// 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";

consulting_out = new Image;
consulting_up = new Image;
consulting_out.src = imgpath +"consulting.gif";
consulting_up.src = imgpath +"consulting-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";

a_search_out = new Image;
a_search_up = new Image;
a_search_out.src = imgpath +"a_search.gif";
a_search_up.src = imgpath +"a_search-up.gif";

email_out = new Image;
email_up = new Image;
email_out.src = imgpath +"../top/email.gif";
email_up.src = imgpath +"../top/email-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;
}