	$(document).ready(function() {  
           $('#menu li a.top, #menuRep li a.top').append('<span class="hover"></span>')
		   $('#menu .hover, #menuRep .hover').css("filter","alpha(opacity=00)");
		   $('#menu li a.top, #menuRep li a.top').hover(function() {
	       
		// Stuff that happens when you hover on + the stop()
		$('.hover', this).stop().animate({
			'opacity': 1
			}, 700,'easeOutSine')
	
	},function() {
	
		// Stuff that happens when you unhover + the stop()
		$('.hover', this).stop().animate({
			'opacity': 0
			}, 700, 'easeOutQuad')
	
	})
		   });
jQuery(document).ready(function() { 
        jQuery('ul.sf-menu').superfish({     
            autoArrows:false                          
        }); 
    });
 

