jQuery(document).ready(function() {
    jQuery(".topMenuAction").click( function() {
        if (jQuery("#openCloseIdentifier").is(":hidden")) {
            jQuery("#slider").animate({
                marginTop: "-160px"
                }, 300,'swing' );
            // $("#topMenuImage").html('<img src="kontakt_btn.png"/>');
            jQuery("#openCloseIdentifier").show();
        } else {
            jQuery("#slider").animate({
                marginTop: "0px"
                }, 300,'swing' );
            // $("#topMenuImage").html('<img src="kontakt_btn.png"/>');
            jQuery("#openCloseIdentifier").hide();
        }
    }); 
});
