$(document).ready(function() {
					
	/* check user mail */	
	$.jheartbeat.set({
		url: "/alive.cfm",
		delay: 60000, 			
		div_id: "topMenu"
		});
			
	$("#locationMenu").hoverIntent(
		function () {
			$("#cityPop",this).show(300);
		}, function () {
			$("#cityPop",this).hide(300);
		}
	);		
						
	$("#siteSearchContainer").hoverIntent(
		function () {
			$("#siteSearchPop",this).show(100);
		},
		function () {
			$("#siteSearchPop",this).hide(100);
		}
	);
			
	$('#mainMenu > .menuItem').hoverIntent(
		function () {
			$(this).find('.popMenu').show(100);
		},
		function () {
			$(this).find('.popMenu').hide(100);
		}		
	);
				
	$('a.titleTip').cluetip({splitTitle: '|',showTitle: false,arrows:true});
	$('a.localTip').cluetip({local:true, cursor: 'pointer', arrows: true});
	$('a.ajaxTip').cluetip({arrows: true});
		
	$.fn.media.defaults.bgColor = '#<cfoutput>#Request.GetColors.Bgcolor#</cfoutput>'; 
	$('a.audioplayer').media( { width:180, height:20 });
	$('a.videoplayer').media({ width:470, height:275 }); 			
					
});

