$(function(){
	$('#social-nav li a').append('<span class="hover"></span>');
  // span whose opacity will animate when mouse hovers.

	$('#social-nav li a').hover(
  	function() {
	  	$('.hover', this).stop().animate({
				'opacity': 1
		}, 500,'easeOutSine')
   },
    function() {
	  	$('.hover', this).stop().animate({
				'opacity': 0
		}, 700, 'easeOutQuad')
	})
})
