//$().ready( function (){
//    $("#header_sharing li").mouseenter(
//        function () {
//            $(this).siblings().stop().children(".email_form").fadeOut(0,$(this).siblings().stop().children("a").fadeOut(0, $(this).siblings().stop().animate({
//                width: '23'
//            },350)));
//            $(this).stop().animate({
//                width: '200'
//            },500,function() {
//                $(this).children("a").fadeIn(200);
//                $(this).children(".email_form").fadeIn(200);
//            }
//            );
//        }
//        );
//});




jQuery(document).ready( function (){
    jQuery("#header_sharing li").mouseenter(
      function () {
            jQuery(this).siblings().stop().children().children(".slide").fadeOut(0);
            jQuery(this).siblings().stop().animate({width: '23'},300);
            jQuery(this).stop().animate({width: '200'},600,function() {
                                       jQuery(this).children().children(".slide").fadeIn(400);
                                       }
                                  );
      }
    );
});

