/* Author: William Golden
*/

	function showNav(e){
		$(this).find("ul.subnav").slideDown('fast').show();			
	}
	function hideNav(e){
		$(this).find("ul.subnav").slideUp('slow'); //When the mouse hovers out of the subnav, move it back up
	}
	
	var navConfig = {
         interval: 300,
         sensitivity: 1,
         over: showNav,
         timeout: 200,
         out: hideNav
    };
    $('ul.topnav li').hoverIntent(navConfig);
