$(document).ready(function() {
    $(".topMenuAction").click( function() {
        if ($("#openCloseIdentifier").is(":visible")) {
            $("#slider").animate({ 
                marginTop: "-150px"
                }, 500 );
            $("#topMenuImage").html('<img src="/images/lmrest/site/Restaurant_Ad/open.png"/>');
            $("#openCloseIdentifier").hide();
        } else {
            $("#slider").animate({ 
                marginTop: "0px"
                }, 500 );
            $("#topMenuImage").html('<img src="/images/lmrest/site/Restaurant_Ad/close.png"/>');
            $("#openCloseIdentifier").show();
        }
    });  
}); 
