﻿/*jQuery(document).ready(function () {
   var bodyHeight = jQuery(document.body).height();
   var windowHeight = jQuery(window).height();   
   if (bodyHeight < windowHeight)
     jQuery(document.body).height(windowHeight);
});
*/