function bounceHeaderFoot(head,foot,layerNum)
	{
		layerNum=5;
		$('div#layer'+layerNum).append($('#'+head).html());
		$('div#layer'+(layerNum)).append($('#'+foot).html());
		$('#'+head).html('');
		$('#'+foot).html('')
		$('div#header').animate(
					{ left: 1, top: 0 }, {
                    duration: 'slow',
                    easing: 'easeOutBounce',
                    complete:function(){
						$('div#footer').animate(
							{ left: 1, top: 541 }, {
                    		duration: 'slow',
                    		easing: 'easeOutBounce',
							complete:function(){
								$('#footer').bind('click',function(){
									document.location.href="http://www.exsportise.co.uk/booking/contact.php";
								});
								showArrows();}
							});
                   
                    }});
		}

function showArrows()
	{
		if($('div#leftArrow a').attr('href')!='') $('div#leftArrow').fadeIn();
		if($('div#rightArrow a').attr('href')!='') $('div#rightArrow').fadeIn();
	}

