$(window).bind('load resize', function(e){
  if (e.type === 'resize'){
    $('.dropShadowLayer').remove();
  }

	$('.shadow').each(function(){
	  $('<div class="dropShadowLayer">').appendTo($('body')).css({
		position: 'absolute',
		width: $(this).width() + 'px',
		height: $(this).height() + 'px',
		/*backgroundColor: '#DFDFDF',*/
		backgroundColor: 'rgb(200,200,200)',
		zIndex: -5000,
		top: ($(this).offset().top + 3) + 'px',
		left: ($(this).offset().left + 3) + 'px'
	  });
	  
	});

});
