// M2Technology - QuickLinks

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