//<![CDATA[	

var opened = "";

$(document).ready(function(){
	$("div.product-nutrition-info p:odd").addClass("odd");
	$("div.product h1").hide();
	$("div[id^='product-info-']").each(function(i) {
		$(this).hide();
		$(this).click(function(event) {
			showProductInfo(id);
			event.preventDefault();
		});
	});
});

function showProductInfo(id) {
	var element = $("#" + id);
	if(element.is(":hidden"))
	{
		if(opened.length > 0) {
			$("#" + opened).slideUp();
			opened = "";
		}
		element.slideDown();
		opened = id;
	}
	else
	{
		element.slideUp();
		opened = "";
	}
}

//]]>
