startList = function()
	{
	if (document.all&&document.getElementById)
		{
		navRootPrimary = document.getElementById("primary-navigation-ul");
		navRoot = document.getElementById("sites");


		for (i=0; i<navRootPrimary.childNodes.length; i++)
			{
			nodePrimary = navRootPrimary.childNodes[i];
			if (nodePrimary.nodeName=="LI" && nodePrimary.id=="primary-navigation-li")
				{
				nodePrimary.onmouseover=function()
					{
					this.className+=" over";
					}
  				nodePrimary.onmouseout=function()
					{
					this.className=this.className.replace(" over", "");
					}
				}
			}


		for (i=0; i<navRoot.childNodes.length; i++)
			{
			node = navRoot.childNodes[i];
			if (node.nodeName=="LI" && node.id=="sites_dorpdown")
				{
				node.onmouseover=function()
					{
					this.className+=" over";
					}
  				node.onmouseout=function()
					{
					this.className=this.className.replace(" over", "");
					}
				}
			}
		}
	}
window.onload=startList;



/*****************************************************
 * Preload Dropdown Images
 *****************************************************/
var image_arr = Array(
	'http://www.cheapdoors.ru/img/primary_navigation_corners_lower.gif',
	'http://www.cheapdoors.ru/img/primary_navigation_dropdown_background.gif',
	'http://www.cheapdoors.ru/img/primary_navigation_background_active.gif'
);

var j = 0;
var p = image_arr.length;
var preBuffer = new Array();

for (i = 0; i < p; i++){
   preBuffer[i] = new Image();
   preBuffer[i].src = image_arr[i];
}
/*****************************************************/