$(document).ready(function() {
		$(".topMenuAction").click( function() {
			if ($("#openCloseIdentifier").is(":hidden")) {
				$("#slider_x").animate({ 
					marginLeft: "0px"
					}, 500 );
				$("#topMenuImage").html('<img src="js/images/open.png" alt="open" />');
				$("#openCloseIdentifier").show();
			} else {
				$("#slider_x").animate({ 
					marginLeft: "170px"
					}, 500 );
				$("#topMenuImage").html('<img src="js/images/close.png" alt="close" />');
				$("#openCloseIdentifier").hide();
			}
		});  
	});
