// JavaScript Document

$(function(){
		 
		   j$('#menu li a').append('<span class="hover"></span>')
		   j$('#menu .hover').css("filter","alpha(opacity=00)");
		   j$('#menu li a').hover(function() {
	        
		// Stuff that happens when you hover on + the stop()
		j$('.hover', this).stop().animate({
			'opacity': 1
			}, 500,'easeOutSine')
	
	},function() {
	
		// Stuff that happens when you unhover + the stop()
		j$('.hover', this).stop().animate({
			'opacity': 0
			}, 500, 'easeOutQuad')
	
	})
		   });

