$(document).ready(function() {
  $(".topMenuAction").click( function() {
    if ($("#openCloseIdentifier").is(":hidden")) {
      $("#slider").animate({ 
        marginTop: "-137px"
        }, 700 );
      $("#topMenuImage").html('<img src="img/open.png" alt="open" />');
      $("#openCloseIdentifier").show();
    } else {
      $("#slider").animate({ 
        marginTop: "0px"
        }, 700 );
      $("#topMenuImage").html('<img src="img/close.png" alt="close" />');
      $("#openCloseIdentifier").hide();
    }
  });  
});
