
$(document).ready(function() {
   
   positionFooter(); 
		function positionFooter(){
			var padding_bottom = $(".contentblock").css("padding-bottom").replace("px", "");
			var page_height = $(document.body).height() - padding_bottom;
			var window_height = $(window).height();
			var difference = window_height - page_height;
			if (difference < 0) 
				difference = 0;
	 
			$(".contentblock").css({
				padding: "0 0 " + difference + "px 0"
			})
		}
	 
		$(window).resize(positionFooter)

	// Email protection
	
	$('#eap').html('<a href="mailto:'+$('#eap').html().replace('|','@').replace('/','').replace(':','.')+'" title="Email: '+$('#eap').html().replace('|','@').replace('/','')+'">'+$('#eap').html().replace('|','@').replace('/','')+'</a>');


});

