
/* Slides the submenus down on mouseover, fades them out on mouseout */

$(document).ready(function() {
	
	this.navLi = $('#navigation > li').children('ul').css('display', 'none').end();
	
	this.navLi.hover(function() {

		// mouseover
		$(this).find('ul').stop(true, true).slideDown(150);
			
	}, function() {
			
		// mouseout
		$(this).find('ul').stop(true, true).delay(50).fadeOut(150);
			
	});
}); 
	
	

						
