/**
 * jQuery Dropdown plugin
 * @version 0.2
 * @date Nov 11, 2009
 * @author Eli Dupuis
 * @copyright (c) 2009 Eli Dupuis (http://elidupuis.com)
 * @license Creative Commons Attribution 3.0 Unported License (http://creativecommons.org/licenses/by/3.0)
 * @requires jQuery 1.3.2 or later (will likely work with previous verions as well)

	Based heavily on snippet from (Steve Taylor) http://sltaylor.co.uk/blog/jquery-hover-drop-down-menu-settimeout/
*/
(function(a){a.fn.dropdown=function(g){var c=a.extend({},a.fn.dropdown.defaults,g),d=[];return this.each(function(){$this=a(this);var f=a.meta?a.extend({},c,$this.data()):c;if(a.browser.mozilla){$this.removeAttr("title");$this.find("*[title]").each(function(){a(this).removeAttr("title")})}a(this).hover(function(){var b=a.data(this),e=a(this);d[b]=setTimeout(function(){e.find(f.child).fadeIn(f.speedIn);d[b]=""},f.delay)},function(){var b=a.data(this);d[b]!=""?clearTimeout(d[b]):a(this).find(f.child).fadeOut(f.speedOut)})})};a.fn.dropdown.defaults={delay:100,speedIn:300,speedOut:200,child:"ul"};a.fn.dropdown.ver=function(){return"jquery.dropdown version 0.2"}})(jQuery);