    $(document).ready(function() {
		$(".topMenuAction2").click( function() {
			if ($("#openCloseIdentifier2").is(":hidden")) {     $("#slider2").animate({ marginLeft: "-212px"}, 500 );
				$("#openCloseIdentifier2").show();
        	} else {
					$("#slider2").animate({                    
					marginLeft: "0px"
					}, 500 );
				$("#openCloseIdentifier2").hide();

				
			}
		});  
	});    
  
