 // JavaScript Document
 //IE 6 needs this for the drop menus to work
                                 $(document).ready(function(){
                                                $(".nav")
                                                .superfish({
                                                                animation : { opacity:"show",height:"show"}
                                                })
                                                .find(">li:has(ul)")
                                                                .mouseover(function(){
                                                                                $("ul", this).bgIframe({opacity:false});
                                                                })
                                                                .find("a")
                                                                                .focus(function(){
                                                                                                $("ul", $(".nav>li:has(ul)")).bgIframe({opacity:false});
                                                                                });
                                });
 //IE 6 needs this for the drop menus to work

