function openBistroPlayer() {
    window.open("/bistroPlayer.html","BlueTalonBistroPlayer","width=450,height=400,menubar=no,toolbar=no,location=no");
}
function randomStartPosition() {
var iconStyle = document.getElementById("flyingIllyIcon").style;
var randomnumber=Math.floor(Math.random()*401);
iconStyle.top = randomnumber + "px";
iconStyle.display = "block";
iconStyle.zIndex = "200";
}

function addMegaHover() {
	$(this).addClass("hovering");
}
function removeMegaHover() {
	$(this).removeClass("hovering");
}

$(document).ready(function() {
	var megaConfig = {
		interval: 100,
		over: addMegaHover,
		timeout: 100,
		out: removeMegaHover
	};
	$('#nav li').hoverIntent(megaConfig);
	if ($('#flyingIllyIcon').length > 0) {
		$('#flyingIllyIcon').animate({'left':'+=800'}, 5000).fadeOut();
	}
});

