/*ADOBE SYSTEMS INCORPORATED
Copyright 2007 Adobe Systems Incorporated
All Rights Reserved.

NOTICE:  Adobe permits you to use, modify, and distribute this file in accordance with the
terms of the Adobe license agreement accompanying it.  If you have received this file from a
source other than Adobe, then your use, modification, or distribution of it requires the prior
written permission of Adobe.*/
if(!ColdFusion.Menu){
ColdFusion.Menu={};
}
ColdFusion.Menu.menuItemMouseOver=function(id,_5a6){
var _5a7=document.getElementById(id);
_5a7.tempfontcolor=_5a7.firstChild.style.color;
if(_5a6){
_5a7.firstChild.style.color=_5a6;
}
};
ColdFusion.Menu.menuItemMouseOut=function(id){
var _5a9=document.getElementById(id);
if(_5a9.tempfontcolor){
_5a9.firstChild.style.color=_5a9.tempfontcolor;
}else{
_5a9.firstChild.style.color="black";
}
};
ColdFusion.Menu.initMenu=function(_5aa,_5ab){
return new YAHOO.widget.Menu(_5aa,_5ab);
};
ColdFusion.Menu.initMenuBar=function(_5ac,_5ad){
return new YAHOO.widget.MenuBar(_5ac,_5ad);
};
