if (document.images)
{
	var btn0on = new Image()
	btn0on.src = "images/on/home_on.gif"
	var btn0off = new Image() 
	btn0off.src = "images/off/home_off.gif"
	
	var btn1on = new Image()
	btn1on.src = "images/on/about_on.gif"
	var btn1off = new Image() 
	btn1off.src = "images/off/about_off.gif"
	
	var btn2on = new Image()
	btn2on.src = "images/on/careers_on.gif"
	var btn2off = new Image()
	btn2off.src = "images/off/careers_off.gif"
	
	var btn3on = new Image()
	btn3on.src = "images/on/event_on.gif"
	var btn3off = new Image()
	btn3off.src = "images/off/event_off.gif"
	
	var btn4on = new Image()
	btn4on.src = "images/on/contact_on.gif"
	var btn4off = new Image()
	btn4off.src = "images/off/contact_off.gif"
	
	var btn5on = new Image()
	btn5on.src = "images/on/members_on.gif"
	var btn5off = new Image()
	btn5off.src = "images/off/members_off.gif"
	
}  

function inact(imgName)
{
	if (document.images)
	{		
      document[imgName].src = eval (imgName + 'off.src');
	  
	}
}

function act(imgName)
{
	if (document.images)
	{		
      document[imgName].src = eval (imgName + 'on.src');	
	}
}




