$(function(){
	$(".droppedready h1:last").addClass("last");
	$(".droppedready h1").click(function(){
	   var next = $(this).next()
	   if (next.is("ul.list_link_product")){
	   		$(this).siblings("ul.list_link_product").slideUp();
	   		$(this).siblings("h1").removeClass("selected");
	   		next.slideDown();
	   		$(this).addClass("selected");
		   	return false;
	   }
	});
});

