$(document).ready(function() {
	$(".topMenuAction").click( function() {
		if ($("#openCloseIdentifier").is(":hidden")) {
			$("#slider").animate({ 
				marginTop: "-25px"
				}, 400 );
			$("#topMenuImage").html('<img src="assets/templates/arteinmostra/css/images/open.gif" alt="open" />');
			$("#openCloseIdentifier").show();
			$("#openCloseIdentifier2").hide();
		} else {
			$("#slider").animate({ 
				marginTop: "0px"
				}, 400 );
			$("#topMenuImage").html('<img src="assets/templates/arteinmostra/css/images/close.gif" alt="close" />');
			$("#openCloseIdentifier").hide();
			$("#openCloseIdentifier2").show();


		}
	});  
});
