// JavaScript Document


$(document).ready(function(){
    
	$(document).ready(function () { 
  		showHeight("window", $(window).height()); 
	});

	function showHeight(ele, h) {
  		$("#container").css({height: h});					
	}
	
	function showHeight(ele, h) {
  		$("#wrapper").css({height: h});					
	}

});
