function toggle(div){
	var option=['welcome','news'];
	for(var i=0; i<option.length; i++){ 
		obj=document.getElementById(option[i]);
		obj.style.display=(option[i]==div)? "block" : "none";}
}


function privacyWindow(){window.open('contact/privacy.htm','ps','width=425,height=450,resizable=no');}

function contactWindow(){window.open('contact/contact.htm','cu','width=425,height=300,resizable=no');}

function privacyWindow2(){window.open('../contact/privacy.htm','ps','width=425,height=450,resizable=no');}

function contactWindow2(){window.open('../contact/contact.htm','cu','width=425,height=300,resizable=no');}


function toggle_visibility(id){
	var e = document.getElementById(id);
	if(e.style.display == 'none')
		e.style.display = 'block';
	else
		e.style.display = 'none';
}

startList = function(){
	if (document.all&&document.getElementById){
		navRoot = document.getElementById("tfi");
		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", "");}
   			}
  		}  					
 	} 
 	if (document.all&&document.getElementById){
		navRoot = document.getElementById("ft");
		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", "");}
   			}
  		}  					
 	}
 	if (document.all&&document.getElementById){
		navRoot = document.getElementById("ieo");
		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", "");}
   			}
  		}  					
 	}
 	if (document.all&&document.getElementById){
		navRoot = document.getElementById("tpco");
		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", "");}
   			}
  		}  					
 	}
 	if (document.all&&document.getElementById){
		navRoot = document.getElementById("tf");
		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", "");}
   			}
  		}  					
 	}
}
window.onload=startList;
