//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/assouline.jpg";

alt2 = new Image();
alt2.src = "images/designer_rollover/caskata.jpg";

alt3 = new Image();
alt3.src = "images/designer_rollover/chronicleBooks.jpg";

alt4 = new Image();
alt4.src = "images/designer_rollover/coteBastide.jpg";

alt7 = new Image();
alt7.src = "images/designer_rollover/lollia.jpg";

//These are the first button graphics

graphic1= new Image();
graphic1.src = "images/designer_nav/dwell_nav_off_01.png";
graphic1on = new Image();
graphic1on.src = "images/designer_nav/dwell_nav_on_01.png";

//These are the second button graphics

graphic2= new Image();
graphic2.src = "images/designer_nav/dwell_nav_off_02.png";
graphic2on = new Image();
graphic2on.src = "images/designer_nav/dwell_nav_on_02.png";

//These are the second button graphics

graphic3= new Image();
graphic3.src = "images/designer_nav/dwell_nav_off_03.png";
graphic3on = new Image();
graphic3on.src = "images/designer_nav/dwell_nav_on_03.png";

//These are the second button graphics

graphic4= new Image();
graphic4.src = "images/designer_nav/dwell_nav_off_04.png";
graphic4on = new Image();
graphic4on.src = "images/designer_nav/dwell_nav_on_04.png";


//These are the second button graphics

graphic7= new Image();
graphic7.src = "images/designer_nav/dwell_nav_off_07.png";
graphic7on = new Image();
graphic7on.src = "images/designer_nav/dwell_nav_on_07.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");
}

}