$(document).ready(function()
{
	$('.product_content').hide();
	
	$('.product_header').click(function()
	{
		$(this).next('.product_content').slideToggle(600);
	});
});