$(document).ready(hover_init);


function hover_init(){
			$('#NFTContent2').hide();
			document.getElementById("NFTRightTitle").style.backgroundImage = "url(/images/Product_pages/Ingredients_off.gif)";
	        $("#NFTLeftTitle").mouseover(function(){
				$('#NFTContent2').hide();
				$('#NFTContent1').show();
				document.getElementById("NFTRightTitle").style.backgroundImage = "url(/images/Product_pages/Ingredients_off.gif)";
				document.getElementById("NFTLeftTitle").style.backgroundImage = "url(/images/Product_pages/" + colourCode + "_assets/Nutritional_facts_buttons/NF_on.gif)";
				});
			$("#NFTRightTitle").mouseover(function(){
				$('#NFTContent1').hide();
				$('#NFTContent2').show();
				document.getElementById("NFTLeftTitle").style.backgroundImage = "url(/images/Product_pages/NF_off.gif)";
				document.getElementById("NFTRightTitle").style.backgroundImage = "url(/images/Product_pages/" + colourCode + "_assets/Nutritional_facts_buttons/Ingredients_on.gif)";
				});
}

