// when the DOM is ready...
$(document).ready(function () {	
	
	$("#footer").hide();
	
	$("#handle").click(function () {
      $("#footer").slideToggle("slow");
    });
	
	$(".menue").click(function () {
      $("#footer").hide();
    });
	
	$(".scrollButtons").click(function () {
      $("#footer").hide();
    });
});
