
/* Google Toolbar autofill fix */
 if(window.attachEvent) window.attachEvent("onload",setListeners);

  function setListeners(){
    inputList = document.getElementsByTagName("INPUT");
    for(i=0;i<inputList.length;i++){
      inputList[i].attachEvent("onpropertychange",restoreStyles);
      inputList[i].style.backgroundColor = "";
    }
    selectList = document.getElementsByTagName("SELECT");
    for(i=0;i<selectList.length;i++){
      selectList[i].attachEvent("onpropertychange",restoreStyles);
      selectList[i].style.backgroundColor = "";
    }
    taList = document.getElementsByTagName("TEXTAREA");
    for(i=0;i<taList.length;i++){
      taList[i].attachEvent("onpropertychange",restoreStyles);
      taList[i].style.backgroundColor = "";
    }
  }

  function restoreStyles(){
    if(event.srcElement.style.backgroundColor != "")
      event.srcElement.style.backgroundColor = "";
  }
 /*  end Google Toolbar autofill fix */ 

/*startList = function() {
	if (document.all&&document.getElementById){
		navRoot = document.getElementById("sitenav");
		for (i=0; i<navRoot.childNodes.length; i++) {
			node = navRoot.childNodes[i];			
			if (node.nodeName=="LI") {
				node.onmouseover=function() {
				  this.className+=" over";
	  			}		  		
				node.onmouseout=function() {
		  		  this.className=this.className.replace(" over", "");
		  		}
		   	} // end if
		} // end for
	} // end if
} //end function
window.onload=startList;
*/
//============================================================================
function tOver(iVal){
  window.status=(iVal) ? iVal : '';
  if (iVal) return true;
}
//============================================================================
