// Customize the behavior of the site.

function test() { alert("Test"); }

$(function(){
// Sticky footer
	$("#footer").each(function(){
		var fH = $(this).outerHeight();
		var bH = $("body").outerHeight();
		var wH = window.innerHeight;
		
		var newH = wH - fH - 20;
		
		//$(this).css({"position":"absolute","top":newH+"px"});
	});
});