$(document).ready(function(){
	
	$("#menu-ul li").hover(function(){
	    $(this).find(".menu-indicator").filter(':not(:animated)').animate({ opacity: 0.3 }, 100);
	}, function() {
	    $(this).not(".currentPage").find(".menu-indicator").animate({ opacity: 0.0 }, 100);
	});
	    
});
