jQuery.noConflict();
jQuery(function(){
	jQuery('#newsParagraph, #newsParagraphBottom').hide();
		jQuery('#newsTitle').click(function(){
		jQuery('#newsParagraph').toggle('slow');
		jQuery('#newsParagraphBottom').toggle('slow');
	});
});