var moving = false;

$(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});
			});

	$('.slideup').hover(function(){
		if (!moving) {
			moving = true;
			$(this).animate({top:'-170px', height: '192px'});
			moving = false;}
		},function(){
		if (!moving){
			moving = true;
			$(this).animate({top:'0px', height: '22px'});
			moving = false;}
	});

});
