
$(function(){

	$('#nav-level-1 span').animate({ 'opacity': 0 })

	$('#nav-level-1 li').hover(function() {
		$('.hover', this).stop().animate({
			'opacity': 1
		}, 500,'easeOutSine')
	},

	function() {
		$('.hover', this).stop().animate({
			'opacity': 0
		}, 500, 'easeOutQuad')
	})

	$("#nav-level-1 li").hover(
		function() { $('ul', this).slideDown(0); },
		function() { $('ul', this).fadeOut(260); }
	);

});
