if (document.all)
{
	ie = 1;
	nn = 0;
	n6 = 0;
}
else if (document.layers)
{
	ie = 0;
	nn = 1;
	n6 = 0;
}
else if (document.getElementById)
{
	ie = 0;
	nn = 0;
	n6 = 1;
}

imgOn = new Array();
imgOn[1] = new Image();
imgOn[1].src = "images/global/nav_home_off_51x26.gif";
imgOn[2] = new Image();
imgOn[2].src = "images/global/nav_nutrition_off_46x26.gif";
imgOn[3] = new Image();
imgOn[3].src = "images/global/nav_products_off_49x26.gif";
imgOn[4] = new Image();
imgOn[4].src = "images/global/nav_buy_off_66x26.gif";
imgOn[5] = new Image();
imgOn[5].src = "images/global/nav_resources_off_58x26.gif";
imgOn[6] = new Image();
imgOn[6].src = "images/global/nav_contact_off_62x26.gif";
imgOn[7] = new Image();
imgOn[7].src = "images/global/nav_hcp_off_24x26.gif";
imgOn[8] = new Image();
imgOn[8].src = "images/global/nav_cart_off_45x26.gif";
imgOn[9] = new Image();
imgOn[9].src = "images/global/nav_recipies_off_62x26.gif";

imgOff = new Array();
imgOff[1] = new Image();
imgOff[1].src = "images/global/nav_home_over_51x26.gif";
imgOff[2] = new Image();
imgOff[2].src = "images/global/nav_nutrition_over_46x26.gif";
imgOff[3] = new Image();
imgOff[3].src = "images/global/nav_products_over_49x26.gif";
imgOff[4] = new Image();
imgOff[4].src = "images/global/nav_buy_over_66x26.gif";
imgOff[5] = new Image();
imgOff[5].src = "images/global/nav_resources_over_58x26.gif";
imgOff[6] = new Image();
imgOff[6].src = "images/global/nav_contact_over_62x26.gif";
imgOff[7] = new Image();
imgOff[7].src = "images/global/nav_hcp_over_24x26.gif";
imgOff[8] = new Image();
imgOff[8].src = "images/global/nav_cart_over_45x26.gif";
imgOff[9] = new Image();
imgOff[9].src = "images/global/nav_recipies_over_62x26.gif";

function rollOver(img, state, div)
{
	if (nn)
	{
		temp = eval("document." + div + ".document.img" + img);
	}
	else
	{
		temp = eval("document.img" + img);
	}
	
	if (state == 1)
	{
		temp.src = imgOn[img].src;
	}
	else if (state == 0)
	{
		temp.src = imgOff[img].src;
	}
}	