if (document.images)
{
	var btn1on = new Image()
	btn1on.src = "images/layout/btn_on/home_on.gif"
	var btn1off = new Image() 
	btn1off.src = "images/layout/btn_off/home_off.gif"	
	
	var btn2on = new Image()
	btn2on.src = "images/layout/btn_on/about_on.gif"
	var btn2off = new Image()
	btn2off.src = "images/layout/btn_off/about_off.gif"
	
	var btn3on = new Image()
	btn3on.src = "images/layout/btn_on/contact_on.gif"
	var btn3off = new Image()
	btn3off.src = "images/layout/btn_off/contact_off.gif"
	
	var btn4on = new Image()
	btn4on.src = "images/layout/btn_on/staff_on.gif"
	var btn4off = new Image()
	btn4off.src = "images/layout/btn_off/staff_off.gif"	
	
	var btn5on = new Image()
	btn5on.src = "images/layout/btn_on/privacy_on.gif"
	var btn5off = new Image()
	btn5off.src = "images/layout/btn_off/privacy_off.gif"	
	
	var btn6on = new Image()
	btn6on.src = "images/layout/btn_on/product_on.gif"
	var btn6off = new Image()
	btn6off.src = "images/layout/btn_off/product_off.gif"	
}  

function inact(imgName)
{
	if (document.images)
	{		
      document.images[imgName].src = eval (imgName + 'off.src');
	  
	}
}

function act(imgName)
{
	if (document.images)
	{		
      document.images[imgName].src = eval (imgName + 'on.src');	
	}
}

