function changeMenuBg(menuItem) {
	if (typeof menuItem != "undefined"){
		document.getElementById(menuItem).style.background='url(images/menu_hoverBackground.gif)'; 
	}
}
function removeMenuBg(menuItem) {
	if (typeof currentSection == "undefined") {
		var hlItem = '';		
	} else {
		var hlItem = currentSection;
	}
	if ((typeof menuItem != "undefined") && (menuItem != hlItem)){
		document.getElementById(menuItem).style.background=''; 
	}
}

///////////////////////////////////////////////////////////////////////////////////
// ACE #39 :
//  to keep track of # of the featured video views on home page, 
//  we use a static function on a page that is called from here.  
//  This function is called when the play button is clicked (see CiberVideoPlayer.as)
///////////////////////////////////////////////////////////////////////////////////
function FeaturedVideoPlayClicked() 
{
    PageMethods.UpdateFeaturedVideoViewes();
}