CounterAdjust = function() {
	$("#counter").css("top", ($(window).height() - 15) );
}

$(document).ready(CounterAdjust);
$(window).resize(CounterAdjust);
