$(document).ready(function() {	$("h4").hover(function(){		$(this).css("cursor","pointer"); 	},function(){		$(this).css("cursor","default");		});	$("div.answer").css("display","none");	$("h4").click(function(){		$(this).next().slideToggle("slow");		//$(this).next().css("display","block");	});});	