$(document).ready(function() {
	$("h3.openclose").hover(function(){
		$(this).css("cursor","pointer"); 
	},function(){
		$(this).css("cursor","default"); 
		});
	$("ul.linklist").css("display","none");
	$("h3.openclose").click(function(){
		$(this).next().slideToggle("slow");
		//$(this).next().css("display","block");
    });
});
