$(document).ready(function() {
	$(".acc h2").hover(function(){
		$(this).css("cursor","pointer"); 
	},function(){
		$(this).css("cursor","default"); 
		});
	$(".acc div").css("display","block");
	$(".acc h2").click(function(){
		$(this).next().slideToggle("fast");
		});
});


