  $(document).ready(function(){

    $("#logoBox").hide();
    $("#logoBox").show('slow');


   var _wh = $(window).height();
   var _dh = $(document).height();

   _adjust_footer(_wh);

  });


   function _adjust_footer(h){
//    required height for this particular page: 733px;
      if(h > 733){
         $("#fullPageFooter").hide();
         $("#fullPageFooter").css("position", "absolute");
         $("#fullPageFooter").css("left", "0");
         $("#fullPageFooter").css("bottom", "1px");
         $("#fullPageFooter").fadeIn('slow');
      }else if(h < 733 ){
         $("#fullPageFooter").hide();
         $("#fullPageFooter").css("position", "relative");
         $("#fullPageFooter").css("left", "0");
         $("#fullPageFooter").show();
      }
   }


   $(window).resize(function(){
     var nwh = $(window).height();
     _adjust_footer(nwh);
   });
