var W3C = {
	
	start: function(){
		
		//select elements
		W3C.DropDownSet = $('news_link');
		W3C.DropDownLinks = W3C.DropDownSet.getElements('a');
		
		//creating event listeners on tabs
		W3C.DropDownLinks.each(function(link){
			link.href = link.href.split('#')[0] + '#' + link.href.split('#')[1].replace(/-/g, '_');
		});
	}
	
};

window.addEvent('domready', W3C.start);
