window.addEvent('domready', function() {
	
	var currentUrl = window.location.href;
	
	var menuSubLinks = $('main-menu-elsewhere').getElements('a');
	menuSubLinks.each(function(item, index){
		if(currentUrl == item){
			item.addClass('active');
		}
	});
	
});