var mouseOverOn = function(imgId)
{
	$('#'+imgId).attr('src',$('#'+imgId).attr('src').replace('_OFF.','_ON.'));		
};
var mouseOverOff = function(imgId)
{
	$('#'+imgId).attr('src',$('#'+imgId).attr('src').replace('_ON.','_OFF.'));		
};
var toggleCommandCenter = function ()
{
	showHideToggleById('MobileCommandCenterContent','MobileCommandCenterHeader','arrowImg');
}
///////////////////////////////////////// PAGE LOAD FUNCTIONS \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\
$(document).ready(function() 
{
	$.fn.media.defaults.flvPlayer = '/sharedImages/flash/mediaplayer.swf';
	$.fn.media.mapFormat('xspf', 'flash');
	$.fn.media.mapFormat('mp4', 'flash');
	$.fn.media.xspf = $.fn.media.flv;
	$('.media').media();
	$("#topicDDmenuBorder").corner();
	$("#topicDDmenuFunk").corner("top curl 5px");
	$(".menuOpt").hover(function() 
	{
		$(this).addClass('LayoutTertiaryLightBG').removeClass('LayoutTertiaryMediumBG');
	},
	function() 
	{
		$(this).addClass('LayoutTertiaryMediumBG').removeClass('LayoutTertiaryLightBG');
		
	});
	$('#TopicLanding').hover(
			function() { $('#topicDD').fadeIn(400); },
			function() { $('#topicDD').fadeOut(400); }
	);
	$('#TopicLanding').bgiframe();
	$("#firstLevelMenu").corner('bottom');
	$("#firstLevelMenuCrescent").corner('bottom');
	$("#secondLevelMenu").corner('bottom');
	$("#secondLevelMenuCrescent").corner('bottom');
	$("#TopicButtonMenu").corner('bottom');
	$("#TopicButtonMenuCrescent").corner('bottom');
	$("#MobileCommandCenterCrescent").corner('tl bl');
	$("#MobileCommandCenterHeader").corner('tl bl');
	$( '#MobileCommandCenter' ).scrollFollow( 
		{                        
			speed: 1000,
			offset: 50
		} 
	);
	$.cookie( 'scrollFollowSettingMobileCommandCenter', true);
});

