
	var sto
	function initIDdebug(){

			for(e=0;obj=document.getElementsByTagName('li')[e]; e++){
				if (obj.parentNode.parentNode.className=='nav'){
					obj.onmouseover=function(){ 
						if(this.lastChild.tagName=='UL')
							this.lastChild.style.display='block'
							this.firstChild.style.color='#4EA319'
							}
					obj.onmouseout=function(){
						if(this.lastChild.tagName=='UL')
							this.lastChild.style.display='none'
						
						this.firstChild.style.color='#666'
					}
				
				}
			}
		}
	function getStyleSheet(name)
	{
	    if(!name || !document.styleSheets) return null;
	    var i = document.styleSheets.length;
	    while(i--)
	    {
	        var rules = document.styleSheets[i].rules ? document.styleSheets[i].rules :
	        document.styleSheets[i].cssRules;
	        var j = rules.length;
	        while(j--) { if(rules[j].selectorText == name) return rules[j]; }
	    }
	     return null;
	}
	function setStyle(name, attr, value)
	{
	    var rule = getStyleSheet(name);
	    if(!rule) return null;
	    if(value) rule.style[attr] = value;
	    return rule.style[attr];
	}



