// Predeclare Images

        if (document.images)
        {
                home = new Image();
                home.src = "../assets/nav/home-off.gif";
                home_on = new Image();
                home_on.src = "../assets/nav/home-on.gif";
				
				about = new Image();
                about.src = "../assets/nav/about-off.gif";
                about_on = new Image();
                about_on.src = "../assets/nav/about-on.gif";
				
				team = new Image();
                team.src = "../assets/nav/team-off.gif";
                team_on = new Image();
                team_on.src = "../assets/nav/team-on.gif";
				
				asia = new Image();
                asia.src = "../assets/nav/asia-x.gif";
                asia_on = new Image();
                asia_on.src = "../assets/nav/asia-on.gif";
				
				jap = new Image();
                jap.src = "../assets/nav/asia-japanlp-x.gif";
                jap_on = new Image();
                jap_on.src = "../assets/nav/asia-japanlp-on.gif";
				
				his = new Image();
                his.src = "../assets/nav/about-his-x.gif";
                his_on = new Image();
                his_on.src = "../assets/nav/about-his-on.gif";
				
				proc = new Image();
                proc.src = "../assets/nav/asia-proc-x.gif";
                proc_on = new Image();
                proc_on.src = "../assets/nav/asia-proc-on.gif";
				
				net = new Image();
                net.src = "../assets/nav/asia-net-x.gif";
                net_on = new Image();
                net_on.src = "../assets/nav/asia-net-on.gif";
				
				success = new Image();
                success.src = "../assets/nav/success-off.gif";
                success_on = new Image();
                success_on.src = "../assets/nav/success-on.gif";
				
				invest = new Image();
                invest.src = "../assets/nav/portfolio-x.gif";
                invest_on = new Image();
                invest_on.src = "../assets/nav/portfolio-on.gif";
				
				news = new Image();
                news.src = "../assets/nav/news-off.gif";
                news_on = new Image();
                news_on.src = "../assets/nav/news-on.gif";
				
				contact = new Image();
                contact.src = "../assets/nav/contact-off.gif";
                contact_on = new Image();
                contact_on.src = "../assets/nav/contact-on.gif";
				
				translate = new Image();
                translate.src = "../assets/nav/translate-off.gif";
                translate_on = new Image();
                translate_on.src = "../assets/nav/translate-on.gif";
				
            }
			


//  Function for Image On or Off

function change(img,act)
{ if (document.images) 
  { if (act=="on")  
    { document [img].src = eval(img+'_on.src'); 
     } 
    else
    { document [img].src = eval(img+'.src');} 
  } 
}



