var Menu = Menu || {};


Menu.initialize = function(){

	$('#topmenu .level-1').each( function(){
		if( $(this).find('li').attr('class').match('active-trail') != null ){
			$(this).find('li').attr("class", $(this).find('li').attr("class").replace('_out','_act') );
		}
	});


	$('#topmenu .level-1 li').hover( function() {
		Menu.clearHover();
		if ( $(this).attr('class').match('active-trail') == null ) {
			$(this).attr("class", $(this).attr("class").replace('_out','_over') );
		}
	}, function(){ });

	$('#topmenu').hover( function(){}, function(){
		Menu.clearHover();
	});
}

Menu.clearHover = function(){
	$('#topmenu .level-1').each( function(){
			if( $(this).find('li').attr('class').match('_over') != null && $(this).find('li').attr('class').match('active-trail') == null ){
				$(this).find('li').attr("class", $(this).find('li').attr("class").replace('_over','_out') );
			}
	});
}

$(document).ready(Menu.initialize);
