(function($) { "use strict"; $(document).ready(function() { $(".topMenuAction").click( function() { if ($("#openCloseIdentifier").is(":hidden")) { $("#slider").animate({ marginTop: "-1000px" }, 900 ); $("#topMenuImage").html('open'); $("#openCloseIdentifier").show(); } else { $("#slider").animate({ marginTop: "0px" }, 300 ); $("#topMenuImage").html('close'); $("#openCloseIdentifier").hide(); } }); }); })(jQuery);