// ******* Random Image with Quote and Link ******* //
// ******* Atlas Design & Technology, www.Atlas.cc ******* //

function Randomizer(){

	// declare variables
	var pics=new Array;
	var quotes=new Array;
	var urls=new Array;
	var target=new Array;
	var idx;

	// pics list
	pics[0] = "images/random/tech.jpg";
	pics[1] = "images/random/preschool2.jpg";
	pics[2] = "images/random/preschool3.jpg";
	pics[3] = "images/random/alaska.jpg";
	pics[4] = "images/random/goldpan.jpg";
	pics[5] = "images/random/preschool.jpg";
	pics[6] = "images/random/ptsa.gif";
	pics[7] = "images/random/reward.jpg";
	pics[8] = "images/random/transportation.jpg";
	pics[9] = "images/random/elementary.jpg";
	pics[10] = "images/random/swoosh.gif";
	pics[11] = "images/random/highschool_athletics.jpg";
	pics[12] = "images/random/ladycats.jpg";
	pics[13] = "images/random/lineup.jpg";
	pics[14] = "images/random/elementary.jpg";
	pics[15] = "images/random/elementary.jpg";

	// quote list
	quotes[0]="Walton-Verona 21st Century Teaching and Learning Initiative";
	quotes[1]="Walton-Verona Preschool";
	quotes[2]="Walton-Verona Preschool";
	quotes[3]="Gifted and Talented";
	quotes[4]="Gifted and Talented";
	quotes[5]="Walton-Verona Preschool";
	quotes[6]="Walton-Verona PTSA";
	quotes[7]="Walton-Verona Schools are tops in Kentucky";
	quotes[8]="Transportation";
	quotes[9]="Elementary Activities";
	quotes[10]="Elementary Athletics";
	quotes[11]="High School Athletics";
	quotes[12]="Athletics at WVHS";
	quotes[13]="Athletics at WVHS";
	quotes[14]="Elementary Activities";
	quotes[15]="Elementary Activities";
	
	// link/target list
	urls[0] = "http://www.w-v.k12.ky.us/maintemplate.asp?deptID=30&subdeptID=155";
	target[0] = "target='_self'";
	
	urls[1] = "http://www.w-v.k12.ky.us/elementary/classselection.asp?deptID=28&subdeptID=1";
	target[1] = "target='_self'";
	
	urls[2] = "http://www.w-v.k12.ky.us/elementary/classselection.asp?deptID=28&subdeptID=1";
	target[2] = "target='_self'";
	
	urls[3] = "http://www.w-v.k12.ky.us/district/maintemplate.asp?deptID=30&subdeptID=86";
	target[3] = "target='_self'";
	
	urls[4] = "http://www.w-v.k12.ky.us/district/maintemplate.asp?deptID=30&subdeptID=86";
	target[4] = "target='_self'";
	
	urls[5] = "http://www.w-v.k12.ky.us/elementary/classselection.asp?deptID=28&subdeptID=1";
	target[5] = "target='_self'";
	
	urls[6] = "http://www.w-v.k12.ky.us/district/maintemplate.asp?deptID=40&subdeptID=194";
	target[6] = "target='_self'";
	
	urls[7] = "http://www.w-v.k12.ky.us/district/maintemplate.asp?deptID=41&subdeptID=200";
	target[7] = "target='_self'";
	
	urls[8] = "http://www.w-v.k12.ky.us/district/maintemplate.asp?deptID=39&subdeptID=212";
	target[8] = "target='_self'";
	
	urls[9] = "http://www.w-v.k12.ky.us/elementary/maintemplate.asp?deptID=24&subdeptID=60";
	target[9] = "target='_self'";
	
	urls[10] = "http://www.w-v.k12.ky.us/elementary/maintemplate.asp?deptID=24&subdeptID=59";
	target[10] = "target='_self'";
	
	urls[11] = "http://www.w-v.k12.ky.us/highschool/maintemplate.asp?deptID=38&subdeptID=156";
	target[11] = "target='_self'";
	
	urls[12] = "http://www.w-v.k12.ky.us/highschool/maintemplate.asp?deptID=38&subdeptID=156";
	target[12] = "target='_self'";
	
	urls[13] = "http://www.w-v.k12.ky.us/highschool/maintemplate.asp?deptID=38&subdeptID=156";
	target[13] = "target='_self'";
	
	urls[14] = "http://www.w-v.k12.ky.us/elementary/maintemplate.asp?deptID=24&subdeptID=61";
	target[14] = "target='_self'";
	
	urls[15] = "http://www.w-v.k12.ky.us/elementary/maintemplate.asp?deptID=24&subdeptID=58";
	target[15] = "target='_self'";

	// find random planet
	idx = Math.round(Math.random() * 100 * quotes.length) % quotes.length;

	// print pic
	document.write('<img src=' + pics[idx] + ' border="1" alt="' + quotes[idx] + '"><br>');

	// print quote
	document.write('<p><table width="250"><tr><td align="center"><div class="big">' + quotes[idx] + '<br></div></td></tr></table>');

	// print link
	document.write('<p><a href="' + urls[idx] + '"' + target[idx] + '><img src="images/random/learn.gif" width="115" height="23" alt="Learn More" border="0"></a>');
}

