$(window).load(function(){

	$('.shadow').each(function(){

	  $('<div class="shadow-img">').appendTo($('body')).css({
		position: 'absolute',
		width: $(this).width()+20*1 + 'px',
		height: $(this).height()+23*1 + 'px',
		zIndex: 2,
		top: ($(this).offset().top)+11 + 'px',
		left: ($(this).offset().left)+11 + 'px'
	  });
	});
});

$(window).resize(function() {

  $('.shadow-img').remove();

	$('.shadow').each(function(){

	  $('<div class="shadow-img">').appendTo($('body')).css({
		position: 'absolute',
		width: $(this).width()+20*1 + 'px',
		height: $(this).height()+23*1 + 'px',
		zIndex: 2,
		top: ($(this).offset().top)+11 + 'px',
		left: ($(this).offset().left)+11 + 'px'
	  });
	});
});

