$(function(){
	// menu hover action
	$('ul.navmenu').mouseover(function(){
		$(this).parent().eq(0).addClass('active');
	}).mouseout(function(){
		$(this).parent().eq(0).removeClass('active');
	});
	// safari hack for displaying menus over video
	if ($.browser.safari && navigator.userAgent.toLowerCase().indexOf("chrome") === -1){
		var resetTimer = null;
		$('ul#mainnav').mouseover(function(){
			window.clearTimeout(resetTimer);
			$('.video-js-box').css('z-index', -1);
		}).mouseout(function(){
			resetTimer = window.setTimeout("$('.video-js-box').css('z-index', '');", 20);
		});	
	}
	// outgoing link tracking
	$('a[href^=http://]').not('a[href^=http://www.travelstoreusa.com]').not('a[href^=http://www.cruiselocators.com]').not('a[href^=http://travelstoreusa.com]').not('a[href^=http://cruiselocators.com]').click(function(){
		if (typeof urchinTracker == 'function') urchinTracker('/outgoing/?to='+escape(this.href));
		return true;
	});
});
