/*GRANITE CITY SCHOOL DISTRICT #9 HOME PAGE ROLLOVER BUTTONS SCRIPT*/
/*CREATED BY JASON VAUGHN IN MARCH 2008*/

if(document.images)
{
	var ImgOver = new Array();
	ImgOver[0] = new Image();
	ImgOver[1] = new Image();
	ImgOver[2] = new Image();
	ImgOver[3] = new Image();
	ImgOver[4] = new Image();
	ImgOver[0].src = "/lib/images/buttons/Student_Down.gif";
	ImgOver[1].src = "/lib/images/buttons/Parent_Down.gif";
	ImgOver[2].src = "/lib/images/buttons/Community_Down.gif";
	ImgOver[3].src = "/lib/images/buttons/Schools_Down.gif";
	ImgOver[4].src = "/lib/images/buttons/CentralOffices_Down.gif";
	
	var ImgOut = new Array();
	ImgOut[0] = new Image();
	ImgOut[1] = new Image();
	ImgOut[2] = new Image();
	ImgOut[3] = new Image();
	ImgOut[4] = new Image();
	ImgOut[0].src = "/lib/images/buttons/Student_Up.gif";
	ImgOut[1].src = "/lib/images/buttons/Parent_Up.gif";
	ImgOut[2].src = "/lib/images/buttons/Community_Up.gif";
	ImgOut[3].src = "/lib/images/buttons/Schools_Up.gif";
	ImgOut[4].src = "/lib/images/buttons/CentralOffices_Up.gif";
}

function RollOver(i)
{
	if (document.images)
	document.images[i].src = ImgOver[i].src;
}

function RollOut(i)
{
	if(document.images)
	document.images[i].src = ImgOut[i].src;
}