$(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});
	});

    $("a.fancybox").fancybox({
	'overlayShow': true,
	'overlayOpacity': 0.9
      });
    
    $('.news-container').cycle({
      fx: 'fade',
	  cleartype: 1,
	  pause: 1,
	  prev:   '.prev',
	  next:   '.next',
	  timeout: 8000,
	  speed:1000
      });

    $('a.isAudio').media( { width: 515, height: 20 } );
    $('a.isVideo').media( { width: 320, height: 240 } );

  });

