$(document).ready(function() {
    $(".topMenuAction").click( function() {
        if ($("#openCloseIdentifier").is(":hidden")) {
            $("#LoginWrapper").animate({
                marginTop: "-230px"
                }, 200 );
            $("#topMenuImage").html('Webmail/Customer Login');
            $("#openCloseIdentifier").show();
        } else {
            $("#LoginWrapper").animate({
                marginTop: "0px"
                }, 200 );
            $("#topMenuImage").html('Close');
            $("#openCloseIdentifier").hide();
        }
    }); 
});