$(document).ready(function() {
	$("h4.t-title").hover(function(){
		$(this).css("cursor","pointer"); 
	},function(){
		$(this).css("cursor","default");
		});
	$("div.t-content").css("display","none");
	$("h4.t-title").click(function(){
		$(this).next().slideToggle("normal");
	});
});	
