// JavaScript Document

//This script changes the graphic on mouse over and a graphic in
//another part of the screen

{
alt0 = new Image();
alt0.src = "images/4.jpg";

alt1 = new Image();
alt1.src = "images/VirtualServers.gif";

alt2 = new Image();
alt2.src = "images/ResellerHosting.gif";

alt3 = new Image();
alt3.src = "images/SharedHosting.gif";

graphic1= new Image();
graphic1.src = "images/mbt1.gif";
graphic1on = new Image();
graphic1on.src = "images/mbt1a.jpg";

graphic2= new Image();
graphic2.src = "images/mbt2.jpg";
graphic2on = new Image();
graphic2on.src = "images/mbt2a.jpg";

graphic3= new Image();
graphic3.src = "images/mbt3.jpg";
graphic3on = new Image();
graphic3on.src = "images/mbt3a.jpg";
}
function imageChange(imageID,imageName,imageID2,imageName2) {


{
document.images[imageID].src = eval(imageName + ".src");
document.images[imageID2].src = eval(imageName2 + ".src");
}

}


