//Below is the code that pre-loads the graphics{//These are the large imagesalt0 = new Image();alt0.src = "./images/bigover.jpg";alt1 = new Image();alt1.src = "./images/bigover1.jpg";alt2 = new Image();alt2.src = "./images/bigover2.jpg";alt3 = new Image();alt3.src = "./images/bigover3.jpg";alt4 = new Image();alt4.src = "./images/bigover4.jpg";alt5 = new Image();alt5.src = "./images/bigover5.jpg";alt6 = new Image();alt6.src = "./images/bigover.jpg";//These are the first button graphicsgraphic1 = new Image();graphic1.src = "./images/but1.gif";graphic1on = new Image();graphic1on.src = "./images/but1b.gif";//These are the second button graphicsgraphic2 = new Image();graphic2.src = "./images/but2.gif";graphic2on = new Image();graphic2on.src = "./images/but2b.gif";//These are the second button graphicsgraphic3 = new Image();graphic3.src = "./images/but3.gif";graphic3on = new Image();graphic3on.src = "./images/but3b.gif";//These are the second button graphicsgraphic4 = new Image();graphic4.src = "./images/but4.gif";graphic4on = new Image();graphic4on.src = "./images/but4b.gif";//These are the second button graphicsgraphic5 = new Image();graphic5.src = "./images/but5.gif";graphic5on = new Image();graphic5on.src = "./images/but5b.gif";//These are the second button graphicsgraphic6 = new Image();graphic6.src = "./images/phone.gif";graphic6on = new Image();graphic6on.src = "./images/phoneb.gif";//This is the function that calls for//the change in the buttons}function imageChange(imageID,imageName,imageID2,imageName2,imageID3,imageName3,imageID4,imageName4,imageID5,imageName5,imageID6,imageName6) {{document.images[imageID].src = eval(imageName + ".src");document.images[imageID2].src = eval(imageName2 + ".src");document.images[imageID3].src = eval(imageName3 + ".src");document.images[imageID4].src = eval(imageName4 + ".src");document.images[imageID5].src = eval(imageName5 + ".src");document.images[imageID6].src = eval(imageName6 + ".src");}}