function getSite(site) {
	$.ajax({
		url: "data/" + site + ".htm",
		cache: false,
		success: function(html){		
		$("#content").html(html);	
			if( $('#content').innerHeight(true) < 280 ) {
				$('#links').animate({			
					height: 280
				}, 0, function() {});	
			} else {
				$('#links').animate({			
					height: $('#content').innerHeight(true)
				}, 0, function() {});
			}		
		}
	});
}


