$(window).load(function(){

	$('.shadow').each(function(){
  
	  $('<div class="foo1"></div>').appendTo($('body')).css({
		position: 'absolute',
		width: $(this).width() + 'px',
		height: $(this).height() + 'px',
		backgroundColor: '#0A3052',
		zIndex: -5000,
		top: ($(this).offset().top + 5) + 'px',
		left: ($(this).offset().left + 5) + 'px'
	  });
	  
	});

});

$(window).resize(function() {

//alert("Test");
 $('.foo1').remove();
 
   $('.shadow').each(function(){
   
   
	  $('<div class="foo1"></div>').appendTo($('body')).css({
		position: 'absolute',
		width: $(this).width() + 'px',
		height: $(this).height() + 'px',
		backgroundColor: '#0A3052',
		zIndex: -5000,
		top: ($(this).offset().top + 5) + 'px',
		left: ($(this).offset().left + 5) + 'px'
	  });
	  
	});
});

