// JavaScript Document
<!-- 
if (document.images) 
{ 
pic1on= new Image(35,17); 
pic1on.src="images/home_02.jpg"; 
pic2on= new Image(85,17); 
pic2on.src="images/cafecream_02.jpg"; 
pic3on= new Image(31,17); 
pic3on.src="images/chef_02.jpg"; 
pic4on= new Image(65,17); 
pic4on.src="images/wholesaler_02.jpg";
pic5on= new Image(56,17); 
pic5on.src="images/consumer_02.jpg";
pic6on= new Image(54,17); 
pic6on.src="images/products_02.jpg";
pic7on= new Image(42,17); 
pic7on.src="images/events_02.jpg";
pic8on= new Image(52,17); 
pic8on.src="images/aboutus_02.jpg";

pic1off= new Image(35,17); 
pic1off.src="images/home_01.jpg"; 
pic2off= new Image(85,17); 
pic2off.src="images/cafecream_01.jpg"; 
pic3off= new Image(31,17); 
pic3off.src="images/chef_01.jpg"; 
pic4off= new Image(65,17); 
pic4off.src="images/wholesaler_01.jpg"; 
pic5off= new Image(56,17); 
pic5off.src="images/consumer_01.jpg"; 
pic6off= new Image(54,17); 
pic6off.src="images/products_01.jpg"; 
pic7off= new Image(42,17); 
pic7off.src="images/events_01.jpg"; 
pic8off= new Image(52,17); 
pic8off.src="images/aboutus_01.jpg"; 

} 

function lightup(imgName) 
{ 
if (document.images) 
{ 
imgOn=eval(imgName + "on.src"); 
document[imgName].src= imgOn; 
} 
} 

function turnoff(imgName) 
{ 
if (document.images) 
{ 
imgOff=eval(imgName + "off.src"); 
document[imgName].src= imgOff; 
} 
} 
//-->