$(document).ready(function() {
	$(".hidden").hide();
	$(".product_header").prepend("<span>[+] </span>");
	$(".product_header").click(function () {
//		$("span").remove();
//		$(".product_header").prepend("<span>[+] </span>");
		$(this).next().slideToggle("slow")
//	  	.siblings(".hidden:visible")
//	  		  .slideUp("slow");
	  	$(this).toggleClass("active");
//	  	$(this).siblings(".product_header").removeClass("active");	  		  

	  	if($(this).attr("class").indexOf("active") != -1) {
			$(this).find("span").remove();
			$(this).prepend("<span>[-] </span>");
	  	} else {
			$(this).find("span").remove();
			$(this).prepend("<span>[+] </span>");	  	
	  	}
	});
	// BUG IE
	$("#menue_footer").css({"height":"15px"});
});