$(document).ready(function() {
	$("h3.toggler").hover(function(){
		$(this).css("cursor","pointer");
		$(this).css("background","#fcc800");
	},function(){
		$(this).css("cursor","default");
		$(this).css("background","#f5f5f5");
	});
	$("div.element_head").css("display","block");
	$("div.element_head").prev().css("color","#528CE0");
	$("div.element").css("display","none");
	$("h3.toggler").click(function(){
		$("h3.toggler").css("color","#000000");
		$("h3.toggler").next().hide("2500");
		$(this).css("color","#528CE0");
		$(this).next().slideDown("slow");
		//$(this).next().slideToggle("slow");
	});
});
