$(document).ready(function() {
    $(".topMenuAction").click( function() {
        if ($("#openCloseIdentifier").is(":hidden")) {
            $("#slider").animate({
                marginTop: "-71px"
                }, 500 );
            $("#topMenuImage").html('ENGLISH');
            $("#openCloseIdentifier").show();
        } else {
            $("#slider").animate({
                marginTop: "0px"
                }, 800 );
            $("#topMenuImage").html('ENGLISH');
            $("#openCloseIdentifier").hide();
        }
    });
});

