//pre-load the graphics


//WHAT ABOUT HEART ART button graphics

graphic1= new Image();
graphic1.src = "http://www.wildheartart.com/layout/whatabout.gif";
graphic1on = new Image();
graphic1on.src = "http://www.wildheartart.com/layout/whatabout_mo.gif";

//IN THE STUDIO button graphics

graphic2= new Image();
graphic2.src = "http://www.wildheartart.com/layout/studio.gif";
graphic2on = new Image();
graphic2on.src = "http://www.wildheartart.com/layout/studio_mo.gif";

//MEET KAY button graphics

graphic3= new Image();
graphic3.src = "http://www.wildheartart.com/layout/meetkay.gif";
graphic3on = new Image();
graphic3on.src = "http://www.wildheartart.com/layout/meetkay_mo.gif";

//PROGRAMS AND CALENDAR button graphics

graphic4= new Image();
graphic4.src = "http://www.wildheartart.com/layout/calendar.gif";
graphic4on = new Image();
graphic4on.src = "http://www.wildheartart.com/layout/calendar_mo.gif";

//INSPIRATION button graphics

graphic5= new Image();
graphic5.src = "http://www.wildheartart.com/layout/creations.gif";
graphic5on = new Image();
graphic5on.src = "http://www.wildheartart.com/layout/creations_mo.gif";

//WHAT THEYRE SAYING button graphics

graphic6= new Image();
graphic6.src = "http://www.wildheartart.com/layout/saying.gif";
graphic6on = new Image();
graphic6on.src = "http://www.wildheartart.com/layout/saying_mo.gif";

//CONTACT AND REGISTRATION button graphics

graphic7= new Image();
graphic7.src = "http://www.wildheartart.com/layout/contact.gif";
graphic7on = new Image();
graphic7on.src = "http://www.wildheartart.com/layout/contact_mo.gif";

//This is the function that calls for
//the change in the buttons

function imageChange(imageID,imageName) {


document.images[imageID].src = eval(imageName + ".src");


}
