// JavaScript Document
$(document).ready(function(){ 
	$("li.level").hoverIntent({
		interval: 100,
		over: showIt, 
		timeout: 300, 
		out: slideIt
	});
	$("li.level1, li.level2").hoverIntent({
		interval: 100,
		over: showIt1, 
		timeout: 100, 
		out: hideIt
	});	
	function showIt(){  
		$(this).children('ul').slideDown(200);
		$(this).children('a').addClass('over');
	}	
	function showIt1(){  
		$(this).children('ul').show(200);
		$(this).children("li.level a").addClass('over');
	}
	function hideIt(){  
		$(this).children('ul').hide(200);
		$(this).children("li.level a").removeClass('over');
	}
	function slideIt(){  
		$(this).children('ul').slideUp(200);
		$(this).children('a').removeClass('over');
	}
	
});
