 

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

//These are the large images
alt0 = new Image();
alt0.src = "imgallery/acovertitle.jpg";

alt1 = new Image();
alt1.src = "imgallery/firstbasket.jpg";

alt2 = new Image();
alt2.src = "imgallery/2greenneck.jpg";

alt3 = new Image();
alt3.src = "imgallery/3charlesbasket.jpg";

alt4 = new Image();
alt4.src = "imgallery/4carolneck.jpg";

alt5 = new Image();
alt5.src = "imgallery/5pambasket.jpg";

alt6 = new Image();
alt6.src = "imgallery/6ivoryneck.jpg";

alt7 = new Image();
alt7.src = "imgallery/7basketlid.jpg";

alt8 = new Image();
alt8.src = "imgallery/8blueneck.jpg";

alt9 = new Image();
alt9.src = "imgallery/9bedcollage.jpg";

alt10 = new Image();
alt10.src = "imgallery/10shelltrio.jpg";

alt11 = new Image();
alt11.src = "imgallery/11whitebright.jpg";

alt12 = new Image();
alt12.src = "imgallery/12volcanobasket.jpg";


//These are the first button graphics

graphic1= new Image();
graphic1.src = "imgallery/first.jpg";
graphic1on = new Image();
graphic1on.src = "imgallery/first.jpg";

//These are the second button graphics 

graphic2= new Image();
graphic2.src = "imgallery/2green.jpg";
graphic2on = new Image();
graphic2on.src = "imgallery/2green.jpg";

//These are the third button graphics 
 
graphic3= new Image();
graphic3.src = "imgallery/3charles.jpg";
graphic3on = new Image();
graphic3on.src = "imgallery/3charles.jpg";

//These are the fourth button graphics

graphic4= new Image();
graphic4.src = "imgallery/4carol.jpg";
graphic4on = new Image();
graphic4on.src = "imgallery/4carol.jpg";

//These are the fifth button graphics

graphic5= new Image();
graphic5.src = "imgallery/5pam.jpg";
graphic5on = new Image();
graphic5on.src = "imgallery/5pam.jpg";

//These are the sixth button graphics

graphic6= new Image();
graphic6.src = "imgallery/6ivory.jpg";
graphic6on = new Image();
graphic6on.src = "imgallery/6ivory.jpg";


//These are the seventh button graphics

graphic7= new Image();
graphic7.src = "imgallery/7basklid.jpg";
graphic7on = new Image();
graphic7on.src = "imgallery/7basklid.jpg";

//These are the eighth button graphics

graphic8= new Image();
graphic8.src = "imgallery/8blue.jpg";
graphic8on = new Image();
graphic8on.src = "imgallery/8blue.jpg";

//These are the ninth button graphics

graphic9= new Image();
graphic9.src = "imgallery/9bedcoll.jpg";
graphic9on = new Image();
graphic9on.src = "imgallery/9bedcoll.jpg";

//These are the tenth button graphics

graphic10= new Image();
graphic10.src = "imgallery/10shell.jpg";
graphic10on = new Image();
graphic10on.src = "imgallery/10shell.jpg";


//These are the eleventh button graphics

graphic11= new Image();
graphic11.src = "imgallery/11white.jpg";
graphic11on = new Image();
graphic11on.src = "imgallery/11white.jpg";

//These are the twelth button graphics

graphic12= new Image();
graphic12.src = "imgallery/12volcano.jpg";
graphic12on = new Image();
graphic12on.src = "imgallery/12volcano.jpg";

//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");
}
}
 
