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: '34px',
			height: '26px',
			padding: '0px'
		}, 200);

	} , function() {
	  jQuery(this).css({'z-index' : '0'});
	  jQuery(this).find('img').removeClass("hover").stop().animate({
			marginTop: '-5px',
			marginLeft: '-5px',
			width: '38px',
			height: '29px',
			padding: '0px'
		}, 100)
		.animate({
			marginTop: '0',
			marginLeft: '0',
			width: '24px',
			height: '18px',
			padding: '0'
		}, 400);
  });
});

