var timer;
if (location.port != 298) {
	if (location.href.indexOf("www.")<0) {
		self.location = 'http://www.'+location.href.substring(7,location.href.length);
	}
}
$(document).ready(function(){
	$("#topnav_onair").mouseenter(function(){
		clearTimeout(timer);
		$("#topnavonair").stop().animate({
			top: "95px"
		},800);
	});
	
	$("#topnav_onair").mouseleave(function(){
		timer = setTimeout("closeNav()", 800);
	});
	
	$("#topnavonair").mouseenter(function(){
		clearTimeout(timer);
	});
	
	$("#topnavonair").mouseleave(function(){
		timer = setTimeout("closeNav()", 800);
	});
	
	//$("#topnavonair_dj").hover(function(){
    $(".topnavsub2").hover(function(){
		var sub2id = $(this).attr('id');
		$(this).find(".imgnormal").css("visibility", "hidden");
		if(!$("#topnavonair").is(":animated")){
			$("#"+sub2id+" ul").stop().animate({
				height: "240px"
			},800);
		}
	}, function(){
		var sub2id = $(this).attr('id');
		$(this).find(".imgnormal").css("visibility", "visible");
		if(!$("#topnavonair").is(":animated")){
			$("#"+sub2id+" ul").stop().animate({
				height: "0"
			},800);
		}
	});
	
	$("#topnav_more").hover(function(){
		$(this).find("> img").css("visibility", "hidden");
		$(this).find("ul").stop().animate({
			height: "60px"
		},800);
	}, function(){
		$(this).find("> img").css("visibility", "visible");
		$(this).find("ul").stop().animate({
			height: "0"
		},800);
	});
	
	
	$("#topnav_about").hover(function(){
		$(this).find("> img").css("visibility", "hidden");
		$(this).find("ul").stop().animate({
			height: "60px"
		},800);
	}, function(){
		$(this).find("> img").css("visibility", "visible");
		$(this).find("ul").stop().animate({
			height: "0"
		},800);
	});
});

function closeNav(){
	clearTimeout(timer);
	
	$("#topnavonair").stop().animate({
		top: "60px"
	},800);
}
