/**
 * footer expanding script written by David Long for Body Stress Release Henley
 * support/info: david@littledesignplanet.co.uk
 * You may reuse and modify this script but please include a credit in the comments.
 */
	$(document).ready(function(){
	   $("#footerLinks a").toggle(function(){
	     $("#footer").animate({ height: 'show', opacity: 'show' }, 'slow');
	   },function(){
	     $("#footer").animate({ height: 'hide', opacity: 'hide' }, 'slow');
	   });
	 });

