	function setShadow() {
		var pageHeight = $('page-wrapper').getHeight() - $('header').getHeight() - $('footer').getHeight();
		
		$('shadow').setStyle({
			height: pageHeight + 'px'
		});
	};

  function showDiv(id)
  {
    $(id).show();
  }
  function hideDiv(id)
  {
    $(id).hide();
  }  
