$(document).ready(function() { 
	
	$('#slides').cycle({
	fx:     'fade',
	speed:  'fast', 
	timeout: 0,
	next:   '.next', 
	prev:   '.prev' 
	});


	var topPanelHidden = true;
	var topPanelShowing;
	var hasClosed;

	$("#toggle").click(function(){		

		if(topPanelHidden != true){
			$("#footer").animate({ 
			height: "0px",
			opacity: 0
			}, 500, function(){
			});
			hasClosed = true;
			
			$('#toggle').html('<h2 id="contact-button"><span class="white">Contact us</span> here</h2>');
		}


		if(topPanelHidden == true) {			

			$("#footer").animate({ 
				height: "330px",
				opacity: 1
			}, 500, function(){
				//setContainerHeight();
				$.scrollTo('#footer', 500);
				return false;
			});
			hasClosed = false;
			
			$('#toggle').html('<img class="close" src="http://t2thes.com/wordpress/wp-content/themes/t2s/images/close.png" />');
		}

		topPanelHidden = hasClosed;

		return false; 
	}); //top panel link
	
});
