// 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-x.gif";
                about_on = new Image();
                about_on.src = "../assets/nav/about-on.gif";
				
				phil = new Image();
                phil.src = "../assets/nav/about-phil-x.gif";
                phil_on = new Image();
                phil_on.src = "../assets/nav/about-phil-on.gif";
				
				strat = new Image();
                strat.src = "../assets/nav/about-strat-x.gif";
                strat_on = new Image();
                strat_on.src = "../assets/nav/about-strat-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";
				
				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-off.gif";
                asia_on = new Image();
                asia_on.src = "../assets/nav/asia-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');} 
  } 
}



