// JavaScript Document

$(function() {
    $('#socialpos').hover(function() {
      $(this).stop().animate({ width: "255px" }, 500, 'easeInOutExpo');
    }, function() {
      $(this).stop().animate({ width: '54px' }, 800, 'easeInOutExpo');
    });
  });
