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

//These are the large images
alt0 = new Image();
alt0.src = "images/designer_rollover/baseA.png";

alt1 = new Image();
alt1.src = "images/designer_rollover/benAmun.png";

alt2 = new Image();
alt2.src = "images/designer_rollover/alexisBittar.png";

alt3 = new Image();
alt3.src = "images/designer_rollover/amritaSingh.png";

alt4 = new Image();
alt4.src = "images/designer_rollover/arisGeldis.png";

alt5 = new Image();
alt5.src = "images/designer_rollover/avindy.png";

alt17 = new Image();
alt17.src = "images/designer_rollover/reportSignature.jpg";

//These are the first button graphics

graphic1= new Image();
graphic1.src = "images/designer_nav/embellish_nav_off_01.png";
graphic1on = new Image();
graphic1on.src = "images/designer_nav/embellish_nav_on_01.png";

//These are the second button graphics

graphic2= new Image();
graphic2.src = "images/designer_nav/embellish_nav_off_02.png";
graphic2on = new Image();
graphic2on.src = "images/designer_nav/embellish_nav_on_02.png";

//These are the second button graphics

graphic3= new Image();
graphic3.src = "images/designer_nav/embellish_nav_off_03.png";
graphic3on = new Image();
graphic3on.src = "images/designer_nav/embellish_nav_on_03.png";

//These are the second button graphics

graphic4= new Image();
graphic4.src = "images/designer_nav/embellish_nav_off_04.png";
graphic4on = new Image();
graphic4on.src = "images/designer_nav/embellish_nav_on_04.png";


//These are the second button graphics

graphic5= new Image();
graphic5.src = "images/designer_nav/embellish_nav_off_05.png";
graphic5on = new Image();
graphic5on.src = "images/designer_nav/embellish_nav_on_05.png";


graphic17= new Image();
graphic17.src = "images/designer_nav/embellish_nav_off_17.png";
graphic17on = new Image();
graphic17on.src = "images/designer_nav/embellish_nav_on_17.png";

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

}
function imageChange(imageID,imageName,imageID2,imageName2) {

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

}