startList = function() {
        if (document.all&&document.getElementById) {
                navRoot = document.getElementById("topmenu");
                for (i=0; i<navRoot.childNodes.length; i++) {
                        node = navRoot.childNodes[i];
                        if (node.nodeName=="LI") {
                                node.onmouseover=function() {
                                //alert("Wib");
                                this.className+=" over";
                                }
                                node.onmouseout=function() {
                                this.className=this.className.replace(" over", "");
                                
                                }
                        
                        }
                }

        }

}
window.onload=startList;

    function clearData(thisBox, value)
	{
	    if(thisBox.value ==(value))
	    {
            thisBox.value = ("");	    
	    }

	}
	
	function resetData(thisBox, value)
	{
		if(thisBox.value == (""))
	    {
            thisBox.value = value;
	    }
	}
	
	
	function popTerms(url)
	{
		newwindow=window.open(url,'Terms','height=600,width=975,left=' + ((screen.width / 2) - 483) + ', top=' + ((screen.height / 2) - 300) + ',resizable=no,scrollbars=yes,toolbar=no,status=no');
		if (window.focus) {newwindow.focus()}
	}
	
	
	function doTab(thisTabNumber)
	{
		for (i=1; i < 5; i++)
		{
		document.getElementById("productDesc_" + i).style.display = 'none';
		document.getElementById("productDescTab_" + i).className = '';
		}
		
		document.getElementById("productDesc_" + thisTabNumber).style.display = 'block';
		document.getElementById("productDescTab_" + thisTabNumber).className = 'selected';
		
		return false;
	
	}
	