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