// JavaScript Document


//Below is the code that pre-loads the graphics 
{

//These are the button graphics

graphic1= new Image();
graphic1.src = "images/about_up.gif";
graphic1on = new Image();
graphic1on.src = "images/about_dn.gif";

graphic2= new Image();
graphic2.src = "images/print_up.gif";
graphic2on = new Image();
graphic2on.src = "images/print_dn.gif";

graphic3= new Image();
graphic3.src = "images/web_up.gif";
graphic3on = new Image();
graphic3on.src = "images/web_dn.gif";

graphic4= new Image();
graphic4.src = "images/brand_up.gif";
graphic4on = new Image();
graphic4on.src = "images/brand_dn.gif";

graphic5= new Image();
graphic5.src = "images/contact_up.gif";
graphic5on = new Image();
graphic5on.src = "images/contact_dn.gif";

					   
//This is the function that calls for
//the change in the buttons  

}
function imageChange(imageID,imageName) { 

{
document.images[imageID].src = eval(imageName + ".src");
}

}


