	jQuery(document).ready(function()
	{	
	
	jQuery("ul#newsy li").children("h2").click(function() 
	{ 
		jQuery(this).next("p").show("fast");
		jQuery("ul#newsy li h2").not(this).next("p:visible").hide(); 
	}
	);
});