//drop down for the nav

jQuery(document).ready(function(){
			jQuery("#nav-one li.hover").hover(
				function(){ jQuery("ul", this).fadeIn("fast"); },
				function() { }
			);
	  	if (document.all) {
				jQuery("#nav-one li.hover").hoverClass ("sfHover");
			}
	  });

		jQuery.fn.hoverClass = function(c) {
			return this.each(function(){
				jQuery(this).hover(
					function() { jQuery(this).addClass(c);  },
					function() { jQuery(this).removeClass(c); }
				);
			});
		};
