// toggle footer


$(document).ready(function() {
 $('#foxhole').hide();
 $('a#show').click(function() {
	 $('#foxhole').slideToggle('slow');
	 $.scrollTo('#foxhole', 'slow');
	return false;
	});
});