/* 3rd tire navigation drop downs
-------------------------*/

jQuery(document).ready(function(){
	
	jQuery("#dropNav li.rootDrop").hoverClass("active");
	jQuery("#dropNav ul.mainNavDrop").children("li").hoverClass("active");
});

// function to add/remove the active class on hover
jQuery.fn.hoverClass = function(c) {
    return this.each(function(){
        jQuery(this).hoverIntent( 
            function() { 
            	jQuery(this).addClass(c); 
            	jQuery("ul", this).fadeIn("normal");
            	},
	    function() { jQuery(this).removeClass(c); 
		jQuery("ul", this).fadeOut(10);
		}
        );
    });
};
