

$(document).ready(function(){
	
	//$(".accordion2 h3").eq(1).addClass("active");
	//$(".accordion2 p").eq(1).show();

	$(".accordion2 h3").click(function(){
		$(this).next("p").slideToggle("slow")
		.siblings("p:visible").slideUp("slow");
		$(this).toggleClass("active");
		$(this).siblings("h3").removeClass("active");
		
		
	});
	
//	$(".accordion3 h3").eq(0).addClass("active");
//	$(".accordion3 p").eq(0).show();

	$(".accordion3 h3").click(function(){
		$(this).next("p").slideToggle("slow")
		.siblings("p:visible").slideUp("slow");
		$(this).toggleClass("active");
		$(this).siblings("h3").removeClass("active");
		
		
	});
	
	$(".accordion-side h3").eq(0).addClass("active");
	$(".accordion-side p").eq(0).show();

	$(".accordion-side h3").click(function(){
		$(this).next("p").slideToggle("slow")
		.siblings("p:visible").slideUp("slow");
		$(this).toggleClass("active");
		$(this).siblings("h3").removeClass("active");
	});
	
	
	$(".product-list li").click(function(){
    	window.location=$(this).find("a").attr("href");return false;
	});
	
	$(".event-list li").click(function(){
    	window.location=$(this).find("a").attr("href");return false;
		
	});
	
	$(".event-list-side li").click(function(){
    	window.location=$(this).find("a").attr("href");return false;
	});
	
	$(".literature-list li").click(function(){
    	window.location=$(this).find("a").attr("href");return false;
	});

});
