startList = function() 
{
      
      if (document.all&&document.getElementById) 
      {
            navRoot = document.getElementById("nav");
            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", "");
                        }
                  }
            }
      }

//***********Решение бага, когда футер не прилипал к низу страницы. Сначала размер страницы умменьшаем на 5px, потом увеличиваем*/
var browser_name = navigator.appName;

var temp    = navigator.appVersion.match(/\((.+)\)/i);
var params  = temp[1].split(/;\s*/);
 
if (browser_name == "Microsoft Internet Explorer" && (params[1] == "MSIE 6.0" ||params[1] == "MSIE 7.0"))
   {	//alert(params[1]);	 
	 document.body.style.width = document.body.clientWidth-5+'px';
	 document.body.style.width = document.body.clientWidth+5+'px';
	}
//*********************************************************************************/
}
window.onload=startList;