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