$(document).ready(function() {
	
	$(".site").click(function(e){
		which = $(this).attr("id");
		href = $("#"+which+" .site_link").attr("href");
		window.location = href;
	});
	
	$(".content").hide();
	
	footerize();
	
	$(window).bind('resize', function() { footerize(); });
	
	$("section hgroup").click(function(e){
		which = $(this).attr("id").replace("toggle_", "");
		$("#"+which+" .content").toggle("fast");
	});

});

function footerize() {
	w = $(window).height();
	fb = $("footer").position().top *1 + $("footer").outerHeight();
	if(fb < w) {
		add = Math.ceil(w *1 - fb);
		fpt = $("footer").css("padding-top").replace("px", "") *1 + add + 10;
		$("footer").css({"padding-top":fpt+"px"});
	}
}
