function setupMenu() {
		
	//jQuery('#navcontainer>ul>li').first().addClass('firstNavItem');
	
	jQuery('#navcontainer li a:not(#current)').addClass('morphNav1');
	jQuery('#navcontainer li a#current').addClass('morphNav2');
	jQuery('#navcontainer li a:not(#current)').hover(function() {
		jQuery(this).stop(true, true).switchClass('morphNav1', 'morphNav2', 300);
	}, function() {
		jQuery(this).stop(true, true).switchClass('morphNav2', 'morphNav1', 300);
	});
	
	
	return;
}

function goHome() {
	jQuery('#logo_left').add('#logo_right').add('#logoHeader').hover(function() {
		jQuery(this).css('cursor', 'pointer');
	}, function() {
		jQuery(this).css('cursor', 'default');
	});
	
	jQuery('#logo_left').add('#logo_right').add('#logoHeader').click(function() {
		location.href=sitePath+'index.html';
		});
	return;
}
