// 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";



//Top menu

imgpath =  "img/menu/"

home_out = new Image;
home_up = new Image;
home_out.src = imgpath +"home.gif";
home_up.src = imgpath +"home-up.gif";

specials_out = new Image;
specials_up = new Image;
specials_out.src = imgpath +"specials.gif";
specials_up.src = imgpath +"specials-up.gif";

services_out = new Image;
services_up = new Image;
services_out.src = imgpath +"services.gif";
services_up.src = imgpath +"services-up.gif";

ourcompany_out = new Image;
ourcompany_up = new Image;
ourcompany_out.src = imgpath +"ourcompany.gif";
ourcompany_up.src = imgpath +"ourcompany-up.gif";

customer_out = new Image;
customer_up = new Image;
customer_out.src = imgpath +"customer.gif";
customer_up.src = imgpath +"customer-up.gif";

cart_out = new Image;
cart_up = new Image;
cart_out.src = imgpath +"cart.gif";
cart_up.src = imgpath +"cart-up.gif";

account_out = new Image;
account_up = new Image;
account_out.src = imgpath +"account.gif";
account_up.src = imgpath +"account-up.gif";
// The Function
function CI(name,img)
{
 name.src = img.src;
}
