$(document).ready(function() { 
	$('#news .content').css({display: "none"});
	$("#news h3 a").click(function () {
		$(this).parents().siblings(".content").slideToggle("slow");
		return false;
	});
});
