function switchImg(item, action)
{
	if( action == "on")
	{
		document.getElementById(''+item+'Img').src = "images/" + item + "_on.gif";
	}
	
	if( action == "off" )
	{
		document.getElementById(''+item+'Img').src = "images/" + item + "_off.gif";
	}
}