// JavaScript Document

$(function() {

 $('#socNav a').stop().animate({'marginLeft':'-85px'},1000);

 $('#socNav > li').hover(
  function () {
   $('a',$(this)).stop().animate({'marginLeft':'-2px'},200);
  },
  function () {
   $('a',$(this)).stop().animate({'marginLeft':'-85px'},200);
  }
 );
});


