
  jQuery(document).ready(function(){
	jQuery("#suckerfishnav")
	.superfish({

		delay		: 800,
		speed		: "fast",
		animation : { opacity:"show", height:"show" }
	})
	.find(">li:has(ul)")
		.mouseover(function(){
			jQuery("ul", this).bgIframe({opacity:false});
		})
		.find("a")
			.focus(function(){
				jQuery("ul", jQuery("#suckerfishnav>li:has(ul)")).bgIframe({opacity:false});
			});
});

