// JavaScript Document

/*startList = function() {
if (document.all&&document.getElementById) {
navRoot = document.getElementById("nav-one");
for (i=0; i<navRoot.childNodes.length; i++) {
node = navRoot.childNodes[i];
if (node.nodeName=="LI") {
node.onmouseover=function() { this.className+=" sfHover";}
node.onmouseout=function() {
            this.className=this.className.replace(" sfHover", "");
  }
}}}}
window.onload=startList;*/

function high(obj){
	obj.childNodes[1].style.display='block';
	obj.childNodes[0].style.color='#000';
}
function low(obj){
	obj.childNodes[1].style.display='none';
	obj.childNodes[0].style.color='#fff';
}
function high2(obj){
	/*if(/MSIE (5\.5|6).+Win/.test(navigator.userAgent)){
		obj.runtimeStyle.filter="none";
	}*/
	obj.childNodes[1].style.display='block';
	obj.style.background='#5f5f5f';
}
function low2(obj){
	/*if(/MSIE (5\.5|6).+Win/.test(navigator.userAgent)){
		oj.runtimeStyle.filter="progid:DXImageTransform.Microsoft.AlphaImageLoader(src='img/pix.png',sizingMethod='crop')";
	}*/
	obj.childNodes[1].style.display='none';
	obj.style.background='url(img/pix.png)';
}
function high3(obj){
	obj.style.background='#5f5f5f';
}
function low3(obj){
	obj.style.background='url(img/pix.png)';
}

function hold(obj,image,name){
	elem=document.getElementById('holder');
	elem.src='images/'+image;
	elem.title=name;
}