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