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