// Greensource WP theme v1.0

// Nav menu drop-downs
jQuery(document).ready(function(){
								
	jQuery("ul.topnav li").hoverIntent(	
		function() { //When topnav is hovered . . .
			jQuery('ul', this).slideDown(200);
		}, 
		function(){ //When mouse moves out of topnav or subnav . . .
			jQuery('ul', this).slideUp(100);
		}
	);
	
}); //end doc ready function
