jQuery(document).ready(function($) {	
	function cleanURL(url) {
		return url.split('#')[0];
	}
	$('#menu ul li a').each(function() {
		if(cleanURL($(this).attr('href')) === cleanURL(window.location.href)) {
			$(this).parent().addClass('selected');
		}
	});	
	$('#menu ul li').not('.selected').not('#menu-search').mouseover(function(e) {
		$(this).addClass('hover');
	});	
	$('#menu ul li').mouseout(function(e) {
		$(this).removeClass('hover');
	});
});

