 var $j = jQuery.noConflict();

$j(function(){
		   

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