$(document).ready(function() {
	/* Toggle footer */
	$('#footer dd').each(function() {
		$(this).hide();
	});
	$('#footer').toggle(
		function() {
			$(this).find('dd').show();
			$(this).find('dt').css('text-align', 'left');
			$(this).css('margin-top', '-80px');
	}, function() {
		$(this).css('margin-top', '0');
		$(this).find('dd').hide();
		$(this).find('dt').css('text-align', 'center');
	}
	);
});

