	
	var News = Class.create();
	
	News = {
		
		initialize: function() {
			$$('.news_body').each(function(item){
				item.toggle();
			});

			$$('.toggle').each(function(item){
				Event.observe(item,'click',function(event){
					$(item.id+'_body').toggle();
				});
			});
			
			var thisURL = document.location.href;
			var splitURL = thisURL.split("#");
			var newsId = splitURL[1];
			
			if(newsId!=''&&newsId!=null) { $(newsId+'_body').toggle(); }
			
		}
		
	}
	
	Event.observe(window,'load',function() {
		News.initialize();
	});