	$(document).ready(function() {
		$(".topMenuAction").click( function() {
			if ($("#openCloseIdentifier").is(":hidden")) {
				$("#slider-magic").animate({ 
					marginTop: "-800px"
					}, 900 );
				$("#topMenuImage").html('<img src="images/content/close.png" alt="close" />');
				$("#openCloseIdentifier").show();
			} else {
				$("#slider-magic").animate({ 
					marginTop: "-10px"
					}, 900 );
				$("#topMenuImage").html('<img src="images/content/close-off.png" alt="close" />');
				$("#openCloseIdentifier").hide();
			}
		});  
		
		$(".topMenuAction2").click( function() {
			if ($("#openCloseIdentifier2").is(":hidden")) {
				$("#slider-fab2laf").animate({ 
					marginTop: "-800px"
					}, 900 );
				$("#topMenuImage2").html('<img src="images/content/close.png" alt="close" />');
				$("#openCloseIdentifier2").show();
			} else {
				$("#slider-fab2laf").animate({ 
					marginTop: "-10px"
					}, 900 );
				$("#topMenuImage2").html('<img src="images/content/close-off.png" alt="close" />');
				$("#openCloseIdentifier2").hide();
			}
		});  
		
		$(".topMenuAction6").click( function() {
			if ($("#openCloseIdentifier6").is(":hidden")) {
				$("#slider-liens").animate({ 
					marginTop: "-350px"
					}, 500 );
				$("#topMenuImage6").html('<img src="images/content/close.png" alt="close" />');
				$("#openCloseIdentifier6").show();
			} else {
				$("#slider-liens").animate({ 
					marginTop: "-10px"
					}, 500 );
				$("#topMenuImage6").html('<img src="images/content/close-off.png" alt="close" />');
				$("#openCloseIdentifier6").hide();
			}
		});  
		
		$(".topMenuAction7").click( function() {
			if ($("#openCloseIdentifier7").is(":hidden")) {
				$("#slider-contact").animate({ 
					marginTop: "-350px"
					}, 500 );
				$("#topMenuImage7").html('<img src="images/content/close.png" alt="close" />');
				$("#openCloseIdentifier7").show();
			} else {
				$("#slider-contact").animate({ 
					marginTop: "-10px"
					}, 500 );
				$("#topMenuImage7").html('<img src="images/content/close-off.png" alt="close" />');
				$("#openCloseIdentifier7").hide();
			}
		}); 
	});