$(document).ready(function(){

	var t = null;

	var navLink = $('.nav a');
	var navMenu = $('#sections');

	navLink.click(function(){ s('open'); return false });
	navMenu.mouseover(function(){ s('over'); return false });
	navMenu.mouseout(function(){ s('out'); return false });
/*
	$('#sections a').click(function(){
		golink = $(this);
		navMenu.fadeOut(250);
		$("div#page").fadeOut(500, function() { window.location = $(golink).attr('href') });
		return false;
	});
*/
	function s( type ) {
		if( type == 'open' ) { navMenu.slideToggle('fast') }
		if( type == 'over' ) { clearTimeout( t ) }
		if( type == 'out' ) { t = setTimeout( function(){ navMenu.slideUp('fast') }, 500 ) }
	}
});