//pre-load the graphics


//HOME button graphics

graphic1= new Image();
graphic1.src = "/layout/aboutus.gif";
graphic1on = new Image();
graphic1on.src = "/layout/aboutus_mo.gif";

//SUBSCRIPTIONS button graphics

graphic2= new Image();
graphic2.src = "/layout/products.gif";
graphic2on = new Image();
graphic2on.src = "/layout/products_mo.gif";

//ASK OUR WRITERS button graphics

graphic3= new Image();
graphic3.src = "/layout/services.gif";
graphic3on = new Image();
graphic3on.src = "/layout/services_mo.gif";

//THIS MONTH button graphics

graphic4= new Image();
graphic4.src = "/layout/getaquote.gif";
graphic4on = new Image();
graphic4on.src = "/layout/getaquote_mo.gif";

//BACK ISSUES button graphics

graphic5= new Image();
graphic5.src = "/layout/contactus.gif";
graphic5on = new Image();
graphic5on.src = "/layout/contactus_mo.gif";

graphic6= new Image();
graphic6.src = "/layout/links.gif";
graphic6on = new Image();
graphic6on.src = "/layout/links_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");


}

