$(document).ready(function(){

	$("#news_box_1 > div span a").bind("click", function()
	{ 
		$("#news_box_1 > div.news_box_content span").toggle();
				
		if($("#news_box_1 > div.news_box_content span").css("display") == 'none')
		{
			$("#news_box_1 > div span a.show_hide_button").css( {backgroundImage: "url(/System/Templates/Sites/180/images/button_hide.jpg)"});
			$("#news_box_1 > div.news_box_smaller span").css({'display':'block'});			
		}
		else
		{
			$("#news_box_1 > div span a.show_hide_button").css( {backgroundImage: "url(/System/Templates/Sites/180/images/button_show.jpg)"});
			$("#news_box_1 > div.news_box_smaller span").css({'display':'none'});
		}		
		this.blur();
		return false;
	});
	
	$("#news_box_2 > div span a").bind("click", function()
	{ 
		$("#news_box_2 > div.news_box_content span").toggle();
				
		if($("#news_box_2 > div.news_box_content span").css("display") == 'none')
		{
			$("#news_box_2 > div span a.show_hide_button").css( {backgroundImage: "url(/System/Templates/Sites/180/images/button_show.jpg)"});
		}
		else
		{
			$("#news_box_2 > div span a.show_hide_button").css( {backgroundImage: "url(/System/Templates/Sites/180/images/button_hide.jpg)"});
		}
		this.blur();
		return false;
	});
	
	$("#news_box_3 > div span a").bind("click", function()
	{ 
		$("#news_box_3 > div.news_box_content span").toggle();
				
		if($("#news_box_3 > div.news_box_content span").css("display") == 'none')
		{
			$("#news_box_3 > div span a.show_hide_button").css( {backgroundImage: "url(/System/Templates/Sites/180/images/button_show.jpg)"});
		}
		else
		{
			$("#news_box_3 > div span a.show_hide_button").css( {backgroundImage: "url(/System/Templates/Sites/180/images/button_hide.jpg)"});
		}
		this.blur();
		return false;
	});	

});
