/*
function setGlobalOnLoad(f)
{
	var root = window.addEventListener || window.attachEvent ? window : document.addEventListener ? document : null;
	if (root)
	{
		if(root.addEventListener)
		{
			root.addEventListener('load', f, false);
		}
		else
			if(root.attachEvent)
			{
				root.attachEvent('onload', f);
			}
	}
	else
	{
		if(typeof window.onload == 'function')
		{
			var existing = window.onload;
			window.onload = function()
			{
				existing();
				f();
			};
		}
		else
		{
			window.onload = f;
		}
	}
}
*/
/*
sfHover = function()
{
	var i,j;
	var sfEls = document.getElementById('menu').getElementsByTagName('LI');
	for (i = 0; i < sfEls.length; i++)
	{
		sfEls[i].onmouseover = function()
		{
			this.className += ' sfhover';
			
			//divs = this.getElementsByTagName('DIV');
			//for (j = 0; j < divs.length; j++)
			//{
			//	if (divs[j].className = 'topMenuDropDown')
			//	{
			//		divs[j].style.left = divs[j].getAttribute('left') + 'px';
			//	}
			//}
		};
		sfEls[i].onmouseout = function()
		{

			this.className = this.className.replace('sfhover', '');
			
			//divs = this.getElementsByTagName('DIV');
			//for (j = 0; j < divs.length; j++)
			//{
			//	if (divs[j].className = 'topMenuDropDown')
			//	{
			//		divs[j].style.left = '-999em';
			//	}
			//}

		};
	}
};
*/
/*
function setCookie (name, value, expires, path, domain, secure)
{
	document.cookie = name + '=' + escape(value) +
	((expires) ? '; expires=' + expires : '') +
	((path) ? '; path=' + path : '') +
	((domain) ? '; domain=' + domain : '') +
	((secure) ? '; secure' : '');
}
*/
/*
function getCookie(name)
{
	var cookie = ' ' + document.cookie;
	var search = ' ' + name + '=';
	var setStr = null;
	var offset = 0;
	var end = 0;
	if (cookie.length > 0)
	{
		offset = cookie.indexOf(search);
		if (offset != -1)
		{
			offset += search.length;
			end = cookie.indexOf(';', offset);
			if (end == -1)
			{
				end = cookie.length;
			}
			setStr = unescape(cookie.substring(offset, end));
		}
	}
	return(setStr);
}

if (getCookie('path') === null)
{
	setCookie('path', '/moscow/tstan', 'Mon, 11-May-2020 00:00:00 GMT', '/');
}
*/
//setGlobalOnLoad(sfHover);

