/* Runtime code, initializes Yahoo UI menu */

YAHOO.util.Event.onContentReady("usbc_main_menu", function () {
                var oMenuBar = new YAHOO.widget.MenuBar("usbc_main_menu", { 
                                                            zindex:99,
                                                            autosubmenudisplay: true, 
                                                            hidedelay: 750, 
                                                            lazyload: true });
                oMenuBar.render();
            });
            
 

function USBCSearchFocusHandler(whichField) {
	/* 
	
		called by an onFocus event attached to the input tag
		clears existing sample text, changes color of text to full strength 
	
	*/
	
	if(whichField.defaultValue == whichField.value)	{
		whichField.value = '';
		whichField.style.color = "black";
	}
}




