function webshop(){
	$("#category ul ul.children").hide();
	$("#category ul ul.active").show();
		$("#category ul li").hover(function(){
		$(this).find("ul:first").slideToggle(200);
	return false; });

	$(".frame .details ").css({display: "none"}); // Opera Fix
	$(".frame").hover(function(){
			$(this).find('.details').css({visibility: "visible",display: "none"}).fadeIn(200);
		},function(){
			$(this).find('.details').fadeOut(200);
		});
};
