jQuery(function($) {
  
  $('#header, .nav, #main').shadow();
  
  var resize = function() {
    $('#column').css({minHeight: $(this).height() + $('#column').height() - $('#column').outerHeight(true)});
  };
  $(window).resize(resize);
  resize();
  
});
