$(document).ready(function() {
						   
	$('span.full_news, a.news_backtoggler').hide();
	$('ul.news_archive li:last').css({'display':'inline','margin-right':'-3px'});
	
	$('a.news_toggler').before('<span class="hellip">&hellip;</span>');
	$('a.news_toggler').click(
			function() {
					$(this).parent().find('span.full_news').show();
					$(this).parent().find('span.hellip').hide();
					$(this).hide();
					$(this).parent().find('a.news_backtoggler').show().before('<span class="nbsp">&nbsp;</span>');
					return false;
					});
	
	$('a.news_backtoggler').click(
			function() {
					$(this).parent().hide();
					$(this).parent().parent().find('span.hellip').show();
					$(this).parent().find('span.nbsp').hide();
					$(this).hide();
					$(this).parent().parent().find('a.news_toggler').show().css('padding-left','2px');
					return false;
					});	
});

