// ########### jQuery.functions


var prod;
prod=$(document);
prod.ready(function(){
	$(".linkproduct").click(function(){
		$(".producthidden").hide();
		$(this).next(".producthidden").show();
	});

});


