sfHover = function() {
	var sfEls = document.getElementById('menunav').getElementsByTagName('LI');
	for (var i=0; i<sfEls.length; i++) {
		sfEls[i].onmouseover=function() {
			this.className+=' sfhover';
		}
		sfEls[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(' sfhover\\b'),'');
		}
	}
}
if (window.attachEvent) window.attachEvent('onload',sfHover);

function beginmenu(){
var stm="<ul id=\"menunav\">";
document.write(stm);
 }

function menubeg(urls,coms){
var stm="<a href=\""+urls+"\">"+coms+"</a>";
document.write("<li>"+stm+"<ul>");
}

function menucom(urls,coms){
var stm="<a href=\""+urls+"\">"+coms+"</a>";
document.write("<li>"+stm+"</li>")
}

function menuend(){
document.write("</ul></li>");
}

function endmenu(){
var stm="</ul>";
document.write(stm);
 }

function menu(upps){
beginmenu();
  menucom(upps+"index.htm","Главная");
  menucom(upps+"about.htm","О компании ");
  menucom(upps+"work.htm","Реализованные проекты ");
  menubeg(upps+"contakt.htm","Контакты ");
    menucom(upps+"shem.htm","Схема проезда");
    menucom(upps+"link.htm","Ссылки");
    menucom(upps+"map.htm","Карта сайта");
  menuend();
  menucom(upps+"zakaz.htm","Заказ оборудования");
endmenu();

}
