// JavaScript Document

$(document).ready(function() {
    $(".topMenuAction").click( function() {
        if ($("#openCloseIdentifier").is(":hidden")) {
            $("#slider2").animate({
                marginLeft: "-141px"
                }, 500 );
            $("#leftMenuImage").html('<img src="open.png"/>');
            $("#openCloseIdentifier").show();
        } else {
            $("#slider2").animate({
                marginLeft: "0px"
                }, 500 );
            $("#leftMenuImage").html('<img src="close.png"/>');
            $("#openCloseIdentifier").hide();
        }
    }); 
});