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

//These are the changing images

alt0 = new Image();
alt0.src = "http://www.rocketstravel.com/objects/images/menu/leftcap.gif";

alt1 = new Image();
alt1.src = "http://www.rocketstravel.com/objects/images/menu/leftcap.gif";

alt2 = new Image();
alt2.src = "http://www.rocketstravel.com/objects/images/menu/leftcap.gif";

alt3 = new Image();
alt3.src = "http://www.rocketstravel.com/objects/images/menu/leftcap.gif";

alt4 = new Image();
alt4.src = "http://www.rocketstravel.com/objects/images/menu/leftcap.gif";

alt5 = new Image();
alt5.src = "http://www.rocketstravel.com/objects/images/menu/leftcap.gif";

alt6 = new Image();
alt6.src = "http://www.rocketstravel.com/objects/images/menu/leftcap.gif";

alt7 = new Image();
alt7.src = "http://www.rocketstravel.com/objects/images/menu/leftcap.gif";


//These are the buttons

graphic1= new Image();
graphic1.src = "http://www.rocketstravel.com/objects/images/menu/home.gif";
graphic1on = new Image();
graphic1on.src = "http://www.rocketstravel.com/objects/images/menu/home_a.gif";

graphic2= new Image();
graphic2.src = "http://www.rocketstravel.com/objects/images/menu/airfares.gif";
graphic2on = new Image();
graphic2on.src = "http://www.rocketstravel.com/objects/images/menu/airfares_a.gif";

graphic3= new Image();
graphic3.src = "http://www.rocketstravel.com/objects/images/menu/vacationpkgs.gif";
graphic3on = new Image();
graphic3on.src = "http://www.rocketstravel.com/objects/images/menu/vacationpkgs_a.gif";

graphic4= new Image();
graphic4.src = "http://www.rocketstravel.com/objects/images/menu/cruises.gif";
graphic4on = new Image();
graphic4on.src = "http://www.rocketstravel.com/objects/images/menu/cruises_a.gif";

graphic5= new Image();
graphic5.src = "http://www.rocketstravel.com/objects/images/menu/cargo.gif";
graphic5on = new Image();
graphic5on.src = "http://www.rocketstravel.com/objects/images/menu/cargo_a.gif";

graphic6= new Image();
graphic6.src = "http://www.rocketstravel.com/objects/images/menu/hajj.gif";
graphic6on = new Image();
graphic6on.src = "http://www.rocketstravel.com/objects/images/menu/hajj_a.gif";

graphic7= new Image();
graphic7.src = "http://www.rocketstravel.com/objects/images/menu/rightcap.gif";
graphic7on = new Image();
graphic7on.src = "http://www.rocketstravel.com/objects/images/menu/rightcap_a.gif";


//This is the change function

}
function imageChange(imageID,imageName,imageID2,imageName2) { 

{
document.images[imageID].src = eval(imageName + ".src");
document.images[imageID2].src = eval(imageName2 + ".src");
}

}