<!-- 
if (document.images) 
{ 
menu1_on= new Image(149,38); 
menu1_on.src="images/menu/home_on.gif"; 
menu1_off= new Image(149,38); 
menu1_off="images/menu/home_off.gif"; 
menu2_on= new Image(149,38); 
menu2_on.src="images/menu/profile_on.gif"; 
menu2_off= new Image(149,38); 
menu2_off="images/menu/profile_off.gif"; 
menu3_on= new Image(149,38); 
menu3_on.src="images/menu/news_press_on.gif"; 
menu3_off= new Image(149,38); 
menu3_off="images/menu/news_press_off.gif"; 
menu4_on= new Image(149,38); 
menu4_on.src="images/menu/services_on.gif"; 
menu4_off= new Image(149,38); 
menu4_off="images/menu/services_off.gif"; 
menu5_on= new Image(149,38); 
menu5_on.src="images/menu/products_on.gif"; 
menu5_off= new Image(149,38); 
menu5_off="images/menu/products_off.gif"; 
menu6_on= new Image(149,38); 
menu6_on.src="images/menu/contact_on.gif"; 
menu6_off= new Image(149,38); 
menu6_off="images/menu/contact_off.gif"; 
menu7_on= new Image(149,38); 
menu7_on.src="images/menu/downloads_on.gif"; 
menu7_off= new Image(149,38); 
menu7_off="images/menu/downloads_off.gif"; 
} 

function lightup(imgName) 
{ 
if (document.images) 
{ 
imgOn=("images/menu/" + imgName + "on.gif"); 
document[imgName].src = imgOn; 
//alert(imgOn);
} 
} 

function turnoff(imgName) 
{ 
if (document.images) 
{ 
imgOff=("images/menu/" + imgName + "off.gif"); 
document[imgName].src= imgOff; 
} 
} 
//-->