$(document).ready(function() {
	
	$("#news h3").addClass("tab");
	
	$("#news h3 strong").hover(function(){
		$(this).css("cursor","pointer");
	},function(){
		$(this).css("cursor","default");
	});
	
	$("#news h4").hide();
	
	$("#news h3").click(function(){
		$("#news h4").not($(this).next()).slideUp();
		$(this).next().slideToggle();
	});
	
});
