function showItem(){
	$('#menu ul li').eq(index).fadeIn(200);
	index += 1;	
	if( index == items ){
		clearInterval(menu);
		$('#corrector_menu').show();
	}
}
function startMenu(){
	menu = setInterval('showItem()', 150);
}		
$(document).ready(function(){		
	index = 0;
	items = $('#menu ul li').length;
	$('#menu ul li').fadeOut(0);	
	
	Cufon.replace('#menu ul li a', { 'fontFamily': 'Helvetica Neue LT Pro', 'hover': true });
	
	$('#menu ul li').hover(function(){
		$('#over_fx').css('top', $(this).position().top);
		var left = 48 + $(this).position().left;
		$('#over_fx').css('left', left);
		$('#over_fx').show();
		$('#over_fx').stop(true, false).animate({ opacity: 0 }, 800, function(){
			$('#over_fx').hide();
		});	
	}, function(){
		$('#over_fx').css('opacity', 1);
	});
});
