// JavaScript Document


$(document).ready(function(){
    
//	$(document).ready(function () { 
//  		showHeight("window", $(window).height()); 
//	});

	function showHeight(ele, h) {
  		$("#content").css({height: h-211});					
	}

});