
$(document).ready(function() {
    $(".topMenuAction").click( function() {
        if ($("#openCloseIdentifier").is(":hidden")) {
            $("#slider").animate({
                marginLeft: "0px"
                }, 500 );
            $("#topMenuImage").html('<img src="../../photolibrary/hidemenu.png"/>');
            $("#openCloseIdentifier").show();
        } else {
            $("#slider").animate({
                marginLeft: "-150px"
                }, 500 );
            $("#topMenuImage").html('<img src="../../photolibrary/showmenu.png"/>');
            $("#openCloseIdentifier").hide();
        }
    }); 
});
