	$(document).ready(function() {

			$.localScroll({
				hash: false,
				onBefore: function()
				{
					$f("*").each(function() { 
						this.stop();
					  });	
				}
			});
			
			
			$('#footer-open').click(function() {

				$('#footer').animate({'height': '300px'}, 'slow');
				$('#footer-open').hide();
											   
			});
						
			$('#footer-close').click(function() {

				$('#footer').animate({'height': '50px'}, 'slow');
				$('#footer-open').fadeIn();
											   
			});
		
 	});
