﻿/* set height */
function FixHeight() {  
   $("#content").height($(document).height() - $("#top").height() - $("#header").height() - $("#footer").height() -108);
}

$(window).resize(FixHeight);
$(document).ready(FixHeight);
