var impHidden = 0;$(document).ready(function() {$('#slide a').click(function() {if (impHidden == 0) {$(".imp_dummy").fadeIn(100);$(".impressum").slideDown("slow", function() {});impHidden = 1;} else {$(".impressum").slideUp("slow", function() {$(".imp_dummy").fadeOut(100);});impHidden = 0;}});});// By IGNAZ Unternehmensinformatik      $(function(){  $("#main img").toggle(    function(){      $(this).animate({      height: "386px"      }, 377);    },    function(){      $(this).animate({         height: "160px"      }, 377);    }  );    $("#footer img").mouseenter(    function(){       $("#footer").animate({bottom:"0px"}, 800);    })    .mouseleave(    function(){       $("#footer").animate({bottom:"-131px"}, 800);    });      $("#footer_home img").mouseenter(    function(){       $("#footer_home").animate({bottom:"0px"}, 800);    })    .mouseleave(    function(){       $("#footer_home").animate({bottom:"-90px"}, 800);    });    });
