jQuery(document).ready(function(){
	//nav item mouse move
	jQuery('.mm2, .mm2 ul').mousemove(function(){
	    hideApplets();
	});
	
	//nav item mouse leave
	jQuery('.mm2, .mm2 ul').mouseleave(function(){
	    showApplets();
	});
	
	//calendar pop up click
	jQuery(".calendar_link").click(function(){
		hideApplets();
	});
	
	jQuery('#qtip-blanket,.qtip-button').live('click',function(){
		showApplets();
	});
});

function hideApplets(){
	jQuery('applet').css({'visibility':'hidden'});
}

function showApplets(){
	jQuery('applet').css({'visibility':'visible'});
}

