//Firefox logging
var debugging = true;
if (typeof console == "undefined") var console = { log: function () { } };
else if (!debugging || typeof console.log == "undefined") console.log = function () { };


$(window).load(function () {
    $('#Logo').click(function () {
        window.location.replace("/");
    });
  
    var footer = $('#RowFooter');
    var height = footer.height();
  
    var resizeHeight = function() {
      var h = $(window).height() - footer.position().top;
      if (h < height) h = height;
      
      footer.height( h + "px" );
    };
  
    resizeHeight();

    $(window).resize(function() {
      resizeHeight();
    });
});

