
<!-- ****JavaScript starts**** -->
document.write("<script language=\"JavaScript\">")
<!--


function Quotes(QuoteNo){
//javascript function start, function name is Quotes with the value QuoteNo
	var Quote = new Array();
//declare Quote as an Array
	Quote[0]="In Wayne County, 43.3% could vote for a $10 million award";
	Quote[1]="In Wayne County, 61.5% believe foreign companies tend to disrespect the rights of American patent holders";
	Quote[2]="In Wayne County, 66.7% believe the average person is at the mercy of large corporations";
	Quote[3]="In Wayne County, 53.6% believe courts have been too restrictive of police";
	Quote[4]="In Oakland County, 47.6% could vote for a $10 million award";
	Quote[5]="In Oakland County, 43.5% believe U.S. companies lag behind Japanese companies in terms of innovation and product development";
	Quote[6]="In Oakland County, 65.2% think product warnings are more to protect against liability than to improve safety";
	Quote[7]="In Oakland County, 30.4% believe a defendant should prove his/her innocence";
	Quote[8]="In Eaton County, 30.9% have a handgun in the household";
	Quote[9]="In Eaton County, 49.1% do not believe officers are more truthful as a witness";
	Quote[10]="In Eaton County, 56.4% believe a few people control political decisions";
	Quote[11]="In Eaton County, 67.9% feel product warnings are intended more to protect against liability than to insure consumer safety";
	Quote[12]="In Eaton County, 57.1% of males could vote for a $10 million award (vs. 32.3% of women)";
	Quote[13]="In Kent County, 50% believe officers are more truthful as a witness";
	Quote[14]="In Kent County, 58.8% believe executives of large corporations often try to cover up harm their companies do";
	Quote[15]="In Kent County, 50% believe holders of patents who don't make or sell products should be entitled to a substantial portion of the profits";
	Quote[16]="In Kent County, 66.7% believe people who start lawsuits and lose should pay court costs";
//input value into Quote[0]-[16]
		return Quote[QuoteNo];
	}
function Random(Number){
//javascript function start, function name is Random with the value Number
	var random1;
	var random2;
	random1 = Math.random()*(Number);
//Math.random javascript is to get a random number in between 0 and 1
	random2 = Math.round(random1);
//Math.round javascript is to round up the number to the nearest integer
	return random2;
	}
function Pics(PicsNo){
//javascript function start, function name is Pics with the value PicsNo
	var Picture = new Array()
	Picture[0]="imgs/wayne.jpg";
	Picture[1]="imgs/kent1.gif";
	Picture[2]="imgs/eaton.gif";
	Picture[3]="imgs/oakland.jpg";
		return Picture[PicsNo];
	}
//-->
document.write("</script>")






  
 
 
 

