$(document).ready(function() {
	$("#footer").hover(function() {
			$("div").clearQueue();
			$("div.bottomContentWrapper").delay(200).fadeOut(400);
			$("#footer").delay(200).animate({ height: '170px' }, 300);
		}, function () {
			$("#footer").stop();
			$("#footer").clearQueue();
			$("#footer").delay(100).animate({ height: '25px' }, 600);
		});
});
