// Slide switcher
$(document).ready(function() {
   	
   	$('.slider').cycle({
		fx:      'fade',
		speed:   '400',
		timeout:  4000
	});
   
   	// FOOTER CONTAINER CONTROL
   	
   	var origHeightOfImpressum = $("#impressum-content").css('height');
   	
   	$('#footer').css({overflow: 'hidden'});
   	$('#impressum-content').css({height:1});
   		
   			$("#impressum-link").click(function(){
   				$('#footer').css({overflow: 'visible'});
   				$('#impressum-content').animate({height:origHeightOfImpressum});
   				$('html, body').animate({scrollTop: $("#impressum-content").offset().top}, 2000);
   			});
   			
   			$(".top-link-impressum").click(function(){
   				//$('#footer').animate({height:35}, 2000);
   				$('#impressum-content').animate({height:1}, 2000);
   				//$('html, body').animate({scrollTop: 0}, 2000);
   	
   			});
   		
});

