// ******* 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/ladycats.jpg";
	pics[2] = "/images/random/lineup.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] = "";

	// quote list
	quotes[0]="Walton-Verona 21st Century Teaching and Learning Initiative";
	quotes[1]="Athletics at WVHS";
	quotes[2]="Athletics at WVHS";
	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";
	
	// link/target list
	urls[0] = "";
	target[0] = "";
	
	urls[1] = "";
	target[1] = "";
	
	urls[2] = "";
	target[2] = "";
	
	urls[3] = "";
	target[3] = "";
	
	urls[4] = "";
	target[4] = "";
	
	urls[5] = "";
	target[5] = "";
	
	urls[6] = "";
	target[6] = "";
	
	urls[7] = "http://www.kde.state.ky.us/oaa/implement/School_Report_Card/documents/20022003/Walton_Verona_Independent/Walton_Verona_Independent.doc";
	target[7] = "target=new"; 
	
	
	// 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><div class="big">' + quotes[idx] + '<br></div>');

	// 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>');
}


