$( function(){
	
	/* Show more news items */
	$('div.more_news_toggle').toggle( function() {
	  //first
	  $('div.more-news-holder').show();
	  $(this).text('Show less');

	}, function() {
	  //second
	  $('div.more-news-holder').hide();
	  $(this).text('Show more');
	});

		
});
