$(document).ready(function() { $(".topMenuAction1").click( function() { if ($("#openCloseIdentifier").is(":hidden")) { $("#aktuelles").animate({ marginTop: "320px", marginLeft: "-10px", width: "0px", height: "0px", opacity: "0" }, 500 ); $("#topMenuImage").html; $("#openCloseIdentifier").show(); } else { $("#aktuelles").animate({ marginTop: "0px", marginLeft: "190px", width: "730px", height: "381px", opacity: "1" }, 500 ); $("#topMenuImage").html; } }); $(".topMenuAction2").click( function() { if ($("#openCloseIdentifier").is(":hidden")) { $("#einrichtungen").animate({ marginTop: "320px", marginLeft: "-10px", width: "0px", height: "0px", opacity: "0" }, 500 ); $("#topMenuImage").html; $("#openCloseIdentifier").show(); } else { $("#einrichtungen").animate({ marginTop: "0px", marginLeft: "190px", width: "730px", height: "381px", opacity: "1" }, 500 ); $("#topMenuImage").html; } }); $(".topMenuAction3").click( function() { if ($("#openCloseIdentifier").is(":hidden")) { $("#politik").animate({ marginTop: "320px", marginLeft: "-10px", width: "0px", height: "0px", opacity: "0" }, 500 ); $("#topMenuImage").html; $("#openCloseIdentifier").show(); } else { $("#politik").animate({ marginTop: "0px", marginLeft: "190px", width: "730px", height: "381px", opacity: "1" }, 500 ); $("#topMenuImage").html; } }); $(".topMenuAction4").click( function() { if ($("#openCloseIdentifier").is(":hidden")) { $("#info").animate({ marginTop: "320px", marginLeft: "-10px", width: "0px", height: "0px", opacity: "0" }, 500 ); $("#topMenuImage").html; $("#openCloseIdentifier").show(); } else { $("#info").animate({ marginTop: "0px", marginLeft: "190px", width: "730px", height: "381px", opacity: "1" }, 500 ); $("#topMenuImage").html; } }); });