//Below is the code that pre-loads the graphics 
{

//These are the changing images

alt0 = new Image();
alt0.src = "images/logo.gif";

alt1 = new Image();
alt1.src = "images/logo.gif";

alt2 = new Image();
alt2.src = "images/logo.gif";

alt3 = new Image();
alt3.src = "images/logo.gif";

alt4 = new Image();
alt4.src = "images/logo.gif";

alt5 = new Image();
alt5.src = "images/logo.gif";


//These are the buttons

graphic1= new Image();
graphic1.src = "images/m_home.gif";
graphic1on = new Image();
graphic1on.src = "images/m_home_a.gif";

graphic2= new Image();
graphic2.src = "images/m_company.gif";
graphic2on = new Image();
graphic2on.src = "images/m_company_a.gif";

graphic3= new Image();
graphic3.src = "images/m_services.gif";
graphic3on = new Image();
graphic3on.src = "images/m_services_a.gif";

graphic4= new Image();
graphic4.src = "images/m_quotes.gif";
graphic4on = new Image();
graphic4on.src = "images/m_quotes_a.gif";

graphic5= new Image();
graphic5.src = "images/m_contact.gif";
graphic5on = new Image();
graphic5on.src = "images/m_contact_a.gif";


//This is the change function

}
function imageChange(imageID,imageName,imageID2,imageName2) { 

{
document.images[imageID].src = eval(imageName + ".src");
document.images[imageID2].src = eval(imageName2 + ".src");
}

}