$(function(){
	$("ul#menu li a").hover(function() {
		
		$(this).pulse({
	        opacity: [0, 1]
	    }, {
	    	duration: 75,
	        times: 9999
	    });
	},function() {
		$(this).stop();
		$(this).stop().pulse().end();
		$(this).stop().animate({color : "#000000", opacity : 1}, 250);
	});
});
