jQuery(function($) {
				
	$('#footer_button').click(function() {
									   		
		if($("#footer").css("margin-bottom").replace("px", "") == -249) {
  			$('#footer').animate({
				marginBottom: '+=220'
  				}, 300, function() {
   		 	// Animation complete.
  			});
  			$('#content').animate({
				marginBottom: '+=300'
  				}, 300, function() {
   		 	// Animation complete.
  			});
			$('#footer_button').css("background-image", "url(fileadmin/images/png/registerDown.png)");  		
			$('#footerTeaser').css({borderTop: '1px solid #808080'});  		
		}
		else {
			 $('#footer').animate({
				marginBottom: '-=220'
  				}, 300, function() {
   		 	// Animation complete.
  			});
			 $('#content').animate({
				marginBottom: '-=300'
  				}, 300, function() {
   		 	// Animation complete.
  			});
			$('#footer_button').css("background-image", "url(fileadmin/images/png/registerUp.png)");  		
			$('#footerTeaser').css({borderTop: '0px solid #808080'});  		
		}
	});   
});

