//Below is the code that pre-loads the graphics 
{

//These are the changing images

alt0 = new Image();
alt0.src = "images/left_cap.gif";

alt1 = new Image();
alt1.src = "images/left_cap.gif";

alt2 = new Image();
alt2.src = "images/left_cap.gif";

alt3 = new Image();
alt3.src = "images/left_cap.gif";

alt4 = new Image();
alt4.src = "images/left_cap.gif";


//These are the buttons

graphic1= new Image();
graphic1.src = "images/m_about.gif";
graphic1on = new Image();
graphic1on.src = "images/m_about_a.gif";

graphic2= new Image();
graphic2.src = "images/m_committee.gif";
graphic2on = new Image();
graphic2on.src = "images/m_committee_a.gif";

graphic3= new Image();
graphic3.src = "images/m_acts.gif";
graphic3on = new Image();
graphic3on.src = "images/m_acts_a.gif";

graphic4= new Image();
graphic4.src = "images/m_coop.gif";
graphic4on = new Image();
graphic4on.src = "images/m_coop_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");
}

}