// Predeclare Images

        if (document.images)
        {
                about = new Image();
                about.src = "assets/home/2.gif";
                about_on = new Image();
                about_on.src = "assets/home/2-on.gif";
				
				team = new Image();
                team.src = "assets/home/3.gif";
                team_on = new Image();
                team_on.src = "assets/home/3-on.gif";
				
				portfolio = new Image();
                portfolio.src = "assets/home/4.gif";
                portfolio_on = new Image();
                portfolio_on.src = "assets/home/4-on.gif";
				
				news = new Image();
                news.src = "assets/home/5.gif";
                news_on = new Image();
                news_on.src = "assets/home/5-on.gif";
				
				invest = new Image();
                invest.src = "assets/home/6.gif";
                invest_on = new Image();
                invest_on.src = "assets/home/6-on.gif";
				
				contact = new Image();
                contact.src = "assets/home/7.gif";
                contact_on = new Image();
                contact_on.src = "assets/home/7-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');} 
  } 
}




