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

        jQuery.fn.hoverClass = function(c) {
            return this.each(function(){
                jQuery(this).hover(
                    function() { jQuery(this).addClass(c);  },
                    function() { jQuery(this).removeClass(c); }
                );
            });
        };
jQuery(document).ready(function(){
    jQuery(".nav")
    .superfish(
        /*animation : { opacity:"show", height:"show" } */
    )
});
/*    .find(">li:has(ul)")
        .mouseover(function(){
            jQuery("ul", this).bgIframe({opacity:false});
        })
        .find("a")
            .focus(function(){
                jQuery("ul", jQuery(".nav>li:has(ul)")).bgIframe({opacity:false});
            });
});
*/

