$(function(){
	$("#NewsWidgit").news_hider();
});

(function($){
	$.fn.news_hider = function(options){
	
	    var settings = {};
	    $.extend(settings,options);
	
		return this.each(function(settings){
			var control_link = $('.showlist').addClass('collapsed'),
			news_container = $('.newsList'),
			news_items = news_container.children('.newsItem').not(':first-child').hide();

			control_link.click(function(e){
			    e.preventDefault();
			
				if($(this).hasClass('collapsed')){
					news_items.show('slow');
					$(this).removeClass('collapsed').text('Hide List');
				}else{
					news_items.not(':first-child').hide('slow');
					$(this).addClass('collapsed').text('Show List');
				}
			});
		});
	};
})(jQuery)
