jQuery(document).ready(function(){
 
  jQuery("ul.flags li").hover(function() {
 
      jQuery(this).css({'z-index' : '10'});
 
    jQuery(this).find('img').addClass("hover").stop().animate({
            marginTop: '-4px',
            marginLeft: '-4px',
            width: '32px',
            height: '32px',
            padding: '0px'
        }, 200);
 
    } , function() {
      jQuery(this).css({'z-index' : '0'});
      jQuery(this).find('img').removeClass("hover").stop().animate({
            marginTop: '-6px',
            marginLeft: '-6px',
            width: '32px',
            height: '32px',
            padding: '0px'
        }, 100)
        .animate({
            marginTop: '0',
            marginLeft: '0',
            width: '24px',
            height: '24px',
            padding: '0'
        }, 400);
  });
});

