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