$(document).ready(function(){
  $("#sss li a img").hover(function(){
    
    wdth = $(this).width();
    //alert(wdth);
    wdth1 = wdth+8;
    $(this).width(wdth1+"px");
    $(this).css("margin-left","-4px");
    $(this).css("margin-top","-254px");
    },function(){
    $(this).width(wdth+"px");
    $(this).css("margin-left","0px");
    $(this).css("margin-top","-250px");
  });
});
