/*
	window.onload = function init(){							 
		if(document.getElementById('actID') != null &&document.getElementById('actID').childNodes.length > 1){
			z = document.createAttribute('class');
			z.value = 'subact';
			document.getElementById('actID').childNodes[1].setAttributeNode(z);	
		} 	 		
	} 
		
	function onMOver(t){
			if(document.getElementById('actID') != null){
				document.getElementById('actID').childNodes[0].style.color= "#FFFFFF";
				document.getElementById('actID').style.backgroundColor= "transparent";
			}
			if(t.childNodes.length  == 2){
				z = document.createAttribute("class");
				z.value = "subact";
				t.style.backgroundColor = "#e1e1e1";
				t.childNodes[1].setAttributeNode(z);
				t.childNodes[1].style.zIndex = 400;
			}
	 }
	 
	function omMOut(t){
			
			if(document.getElementById('actID') != null){
				document.getElementById('actID').childNodes[0].style.color= "#9ccd8f";
				document.getElementById('actID').style.backgroundColor= "#e1e1e1";
			}
				
			if(t.childNodes.length  == 2){
				pausecomp(0);
				t.style.backgroundColor = "transparent";
				t.childNodes[1].className = t.childNodes[1].className.replace(/\bsubact\b/,"");				
			}
	}
	
	function onSubOv(t){
		if(document.getElementById('subAID') != null)
			document.getElementById('subAID').childNodes[0].style.color= "#555555";
		else 
			return;
	}
	function onSubOu(t){
		if(document.getElementById('subAID') != null)
			document.getElementById('subAID').childNodes[0].style.color= "#5aa05f";
		else 
			return;
	}
	
	function pausecomp(millis) 
	{
		var date = new Date();
		var curDate = null;

		do { curDate = new Date(); } 
		while(curDate-date < millis);
	} 
*/
	function onMOver(t){} 
	function omMOut(t){}
	function onSubOv(t){}
	function onSubOu(t){}
	function pausecomp(millis){} 
