$(document).ready(function(){
	
	$(".accordion h3.inicio").addClass("active");
	$(".accordion ul:not(.inicio)").hide();

	$(".accordion h3").click(function(){
		$(this).next("ul").slideToggle("slow")
		.siblings("ul:visible").slideUp("slow");
		$(this).toggleClass("active");
		$(this).siblings("h3").removeClass("active");
		setTimeout("window.location.href='" +$(this).find("a")[0].href + "'", 1000);
	});

});
