$(document).ready(function(){
			$("ul.nav")
			.superfish({
				animation : { opacity:"show",height:"show"}
			})
			.find(">li:has(ul)")
				.mouseover(function(){
					$("ul", this).bgIframe({opacity:false});
				})
				.find("a")
					.focus(function(){
						$("ul", $(".nav>li:has(ul)")).bgIframe({opacity:false});
					});
		});

$(document).ready(function(){
	
	$(".btn-slide").click(function(){
		$("#panelshopcart").slideUp();
		
		$("#panel").slideToggle("slow");
		$(this).toggleClass("active"); return false;
		
	});
	
	$(".btn-slide2").click(function(){
		$("#panel").slideUp();
		
		$("#panelshopcart").slideToggle("slow");
		$(this).toggleClass("active"); return false;
		
	});
});



$(document).ready(function(){

	$(".accordion h4:first").addClass("active");
	$(".accordion table").hide();

	$(".accordion h4").click(function(){

	  $(this).next("table").slideToggle("slow")
	  .siblings("table:visible").slideUp("slow");
	  $(this).toggleClass("active");
	  $(this).siblings("h4").removeClass("active");

	});

});