jQuery(document).ready(function() { 
	jQuery('#cwd a').click(function() {
		window.open(this.href); return false;
	});

	$('.nav')
		.superfish({
			animation : { opacity:"show",height:"show"}
		})
		.find(">li[ul]")
			.mouseover(function(){
				$("ul", this).bgIframe({opacity:false});
			})
			.find("a")
				.focus(function(){
					$("ul", $(".nav>li[ul]")).bgIframe({opacity:false});
				});
});