// JavaScript Document

$(document).ready(function(){
	var movement=0;
	/*$("li.back").css({
					 "left" : "0px"
					 })*/
	
						   	
	$("#propeller-footer-top").css({
									"height": '120px',
									"overflow": 'hidden'
									})
	$("#propeller-footer").css({
									"height": '120px'
									})
	
	function animateUp() {
			$("#propeller-footer-top").animate({
				"height": "309px"
			}, 500);
			$("#propeller-footer").animate({
				"height": "309px",
				"marginTop" : "-189px"
			});
	};
	function animateDown() {
			$("#propeller-footer-top").animate({
				"height": "120px"
			}, 500);
			$("#propeller-footer").animate({
				"height": "120px",
				"marginTop" : "0px"
			});
	};
	

	$("#propeller-footer").mouseenter(function(){
		if (!$(this).is(':animated')) {
			animateUp();
		}
	});	
	
	
	$("#propeller-wrapper").mouseenter(function(){
			animateDown();
	});	
});