//05-17-06
//MARS Interactive, LLC



//JavaScript rollover functions for Arm and Hammer/prod.htm
function chgImage(which)
{
	if (which == 1)
	{
		document.getElementById("bag_map").src = "images/prod2_over1_05.gif";
	}
	else if (which == 2)
	{
		document.getElementById("bag_map").src = "images/prod2_over2_05.gif";
	}
	else if (which == 3)
	{
		document.getElementById("bag_map").src = "images/prod2_over3_05.gif";
	}
	else if (which == 4)
	{
		document.getElementById("bag_map").src = "images/prod2_over4_05.gif";
	}
	else if (which == 5)
	{
		document.getElementById("bag_map").src = "images/prod2_over5_05.gif";
	}
}


function chgBackImage()
{
	document.getElementById("bag_map").src = "images/prod2_rollup_05.gif";
}



