$(document).ready(function(){
	
	$("#accordion h3:first").addClass("active");
	$("#accordion div:not(:first)").hide();
	$("#accordion h3").click(function(){
		$(this).next("div").slideToggle("slow").siblings("div:visible").slideUp("slow");
		$(this).toggleClass("active");
		$(this).siblings("h3").removeClass("active");
		//$(this).next('div').children('img').css({'z-index': '1000', 'position': 'relative', 'top': '0'}).show();
	});

});