if ($("#main").height() <= 650) {

	//only small content, resize the sidebar accordingly


	//not on the homepage though
	var is_homepage = $("body")[0].id;
	
	if(is_homepage == "homepage"){
	
		$("#main").height(560);
	
		$("#sidebar").height($("#main").height());
		$("#content").height($("#main").height());
		
	} else {

		
	    var height = 650 + 200 ;
	    $("#main").height(height);
		$("#sidebar").height(height);
		$("#content").height(height); 
		$(".buildings").css({'bottom' : '0px'});
	
	}
	
} else {
   

	var mainHeight = $("#main").height() + 50;
	
	$("#sidebar").height(mainHeight);
	 $("#content").height(mainHeight);
	$(".buildings").css({'bottom' : '-90px'});

}
