function dockMenu() {
	
	if ($("#menuWrapper").css('position') == 'fixed') {
		$("#menuWrapper").css({'position' : 'static'});
		
		$(".dock-link").html('Dock menu');
		
		//$("#menuWrapper").css('top','0px');
	}
	else {
		
		$("#menuWrapper").css({'position' : 'fixed', 'width' : '980px'});
		$("#menuWrapper").css('top','-3px');
		
		$(".dock-link").html('Undock menu');
	}
	
	//$("#menuWrapper").css({'position' : 'fixed', 'width' : '980px'});
	//$("#menuWrapper").css('top','0px');
	
	//$("#menuWrapper").before('<div style="height: 10px; width: 980px; margin: 0px auto; background-color: #F1F1F1"></div>');
	//$("#menuWrapper").after('</div>');
	
	return false; // Return false to stop page from reloading when href is #
}
