function showNews() {
	
	jQuery('div.pressRelease span.openElement').toggle(function(){


								
		jQuery(this).siblings("div.expandable").slideDown();
		jQuery(this).text("Close article");
		
		if(jQuery(this).parent().attr("class")!= "pressRelease firstArticle"){
		
		jQuery(this).parent().addClass("newsItem");
		
		} else {
			
		jQuery(this).parent().addClass("firstNewsItem");

		}
		
		jQuery(this).siblings("p.synopsis").hide();

	}, function(){
	
			jQuery(this).attr("src","images/openElement.gif");
			jQuery(this).text("Read full article");
			jQuery(this).parent().removeClass("newsItem").removeClass("firstNewsItem");
			jQuery(this).siblings("div.expandable").slideUp();
			jQuery(this).siblings("p.synopsis").show();
	
	});

}
