$(document).ready(function() {
	
    $('#socials-menu ul li').hover(
        function () {
            var $this = $(this);
            $('div',$this).stop(true,true).animate({'top':'-327px'}, 1000);
        },
        function () {
            var $this = $(this);
            $('div',$this).stop(true,true).animate({'top':'80px'}, 'slow');
        }
    );

});

