 $(function() {
                $('#social a').stop().animate({'marginLeft':'-250px'},0);

                $('#social > li').hover(
                    function () {
                        $('a',$(this)).stop().animate({'marginLeft':'-12px'},500);
                    },
                    function () {
                        $('a',$(this)).stop().animate({'marginLeft':'-250px'},700);
                    }
                );
            });
