$(document).ready(function() {
	//	[footer]
	$("#footerSlideContainer #footer").hide();
	$("#footerSlideButton").toggle(function() {
		$("#footerSlideContainer").addClass("active");
		$("#footerSlideContainer #footer").show();
		var h = $("#footer").outerHeight(true);
		$('html, body').animate({scrollTop:"+="+h+"px"});

	}, function() {
		var h = $("#footer").outerHeight(true);
		$('html, body').animate({scrollTop:"-="+h+"px"}, function() {
			$("#footerSlideContainer").removeClass("active");
			$("#footerSlideContainer #footer").hide();
		});
	});
});
