// Splash Screen

imgpath = "img/"

// email

imgpath =  "img/top/"

mail_out = new Image;
mail_up = new Image;
mail_out.src = imgpath +"mail.gif";
mail_up.src = imgpath +"mail-up.gif";

map_out = new Image;
map_up = new Image;
map_out.src = imgpath +"map.gif";
map_up.src = imgpath +"map-up.gif";

//Top menu

imgpath =  "img/top/menu/"

home_out = new Image;
home_up = new Image;
home_out.src = imgpath +"home.gif";
home_up.src = imgpath +"home-up.gif";

cruises_out = new Image;
cruises_up = new Image;
cruises_out.src = imgpath +"cruises.gif";
cruises_up.src = imgpath +"cruises-up.gif";

vacation_out = new Image;
vacation_up = new Image;
vacation_out.src = imgpath +"vacation.gif";
vacation_up.src = imgpath +"vacation-up.gif";

flights_out = new Image;
flights_up = new Image;
flights_out.src = imgpath +"flights.gif";
flights_up.src = imgpath +"flights-up.gif";

lodging_out = new Image;
lodging_up = new Image;
lodging_out.src = imgpath +"lodging.gif";
lodging_up.src = imgpath +"lodging-up.gif";

carrail_out = new Image;
carrail_up = new Image;
carrail_out.src = imgpath +"carrail.gif";
carrail_up.src = imgpath +"carrail-up.gif";

specials_out = new Image;
specials_up = new Image;
specials_out.src = imgpath +"specials.gif";
specials_up.src = imgpath +"specials-up.gif";

company_out = new Image;
company_up = new Image;
company_out.src = imgpath +"company.gif";
company_up.src = imgpath +"company-up.gif";

tellafriend_out = new Image;
tellafriend_up = new Image;
tellafriend_out.src = imgpath +"tellafriend.gif";
tellafriend_up.src = imgpath +"tellafriend-up.gif";

customer_out = new Image;
customer_up = new Image;
customer_out.src = imgpath +"contactus.gif";
customer_up.src = imgpath +"contactus-up.gif";

// The Function
function CI(name,img)
{
 name.src = img.src;
};