/*

// Commented bgIframe calls because that library is not currently being
// included.  Allegedly it was causing problems in IE6, which it is meant to
// help.

$(document).ready(function(){
   $('.nav')
   .superfish({
      animation : { opacity:'show', height:'show' }
   });
});
*/

$(document).ready(function(){
   $('.v-nav')
   .superfish({
      animation : { opacity:'show', height:'show' }
   })
   .find('>li:has(ul)')
      .mouseover(function(){
         //$('ul', this).bgIframe({opacity:false});
      })
      .find('a')
         .focus(function(){
            //$('ul', $('.v-nav>li:has(ul)')).bgIframe({opacity:false});
         });
});			

$(document).ready(function(){
   $('.mainnav')
   .superfish({
      animation : { opacity:'show', height:'show' }
   })
   .find('>li:has(ul)')
      .mouseover(function(){
         //$('ul', this).bgIframe({opacity:false});
      })
      .find('a')
         .focus(function(){
            //$('ul', $('.mainnav>li:has(ul)')).bgIframe({opacity:false});
         });
});			
