/*----------------------------------------
Micro Site Plugins
Author: Marcus Ellis
Last Updated: September 19, 2011
(c) 2011 Affiniscape, Inc.
All Rights Reserved. This JavaScript file must not be reproduced without the express written permission of Affiniscape, Inc.
For questions regarding licensing or setup please contact Affiniscape, projects @ affiniscape dot com
----------------------------------------*/

(function($) {
	
	$.fn.extend({
		navFlyouts: function(s){
			var defaults = { 
				speedDown: 200,
				speedUp: 600, 
				delay: 200
			};  
			var s = $.extend(defaults, s);
			return this.each(function() {
				var obj = $(this);
				obj.children('li').children('ul').hide().bind('mouseover',function(){
					$(this).stop(true, true).slideDown(s.speedDown);
				});
				obj.children('li').hover(
					function(){
						$(this).children('ul').delay(s.delay).stop(true,true).slideDown(s.speedDown);
					},
					function(){
						$(this).children('ul').delay(s.delay).stop(true,true).slideUp(s.speedUp);
					}        
				);
			});
		}
		
	});
	
})(jQuery);


