if (document.images) 
{  
img01on = new Image ;img01off = new Image;  
img02on = new Image ;img02off = new Image;
img03on = new Image ;img03off = new Image;
img04on = new Image ;img04off = new Image;
img05on = new Image ;img05off = new Image;
  
img01on.src = "images/history_o.gif";img01off.src = "images/history.gif"; 
img02on.src = "images/artgallery_o.gif";img02off.src = "images/artgallery.gif";
img03on.src = "images/makingofthanka_o.gif";img03off.src = "images/makingofthanka.gif"; 
img04on.src = "images/abtus_o.gif";img04off.src = "images/abtus.gif"; 
img05on.src = "images/contactus_o.gif";img05off.src = "images/contactus.gif";

} 

function Over(name,number){
 			document.images[name].src=eval('img'+number+'on.src');
		}
function Out(name,number){
 			document.images[name].src=eval('img'+number+'off.src');
		}		

		
function img_act(imgName) { 
if (document.images) 
{ imgOn = eval (imgName + "on.src"); 
document [imgName].src = imgOn; } } 
function img_inact(imgName) { 
if (document.images) 
{ imgOff = eval(imgName + "off.src"); 
document [imgName].src = imgOff; } } 