// JavaScript Document


<!--
var imageNormal = new Array;
imageNormal [6] = "images/advoandmediamainbutton.png";
imageNormal [8] = "images/booksmainbutton.png";
imageNormal [10] ="images/onlineprintmainbutton.png";
imageNormal [12] ="images/healthmainbutton.png";

var imageHover = new Array;
imageHover [6] = "images/advoandmediamainbuttonRoll.png";
imageHover [8] = "images/booksmainbuttonRoll.png";
imageHover [10] ="images/onlineprintmainbuttonRoll.png";
imageHover [12] ="images/healthmainbuttonRoll.png";

function hoverOver(n)

{
	window.document.images[n].src=imageHover[n];
}

function hoverOff(n)

{
	window.document.images[n].src=imageNormal[n];
}

-->


