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