jQuery.noConflict();
jQuery(document).ready(function() {
	jQuery("ul#topNav")
		.superfish({
			hoverClass	: "sfHover",
			currentClass: "overideThisToUse",
			delay		: 50,
			animation	: {opacity:"show"},
			speed		: "normal"
		})
		.find(">li[ul]")
			.mouseover(function(){
				jQuery("ul", this).bgIframe({opacity:false});
			})
		.find("a")
			.focus(function(){
				jQuery("ul", jQuery("#topNav>li[ul]")).bgIframe({opacity:false});
	});
});

