// JavaScript Document

function menuRollOver(object, action)
{
		objectItem = document.getElementById(object);
		
		if (action == "over") { 
			objectItem.style.backgroundImage = "url(images/menu-belka-on.gif)";
			objectItem.style.filter = "alpha(opacity=100)";
			//objectItem.style.-moz-opacity = ".90";
			objectItem.style.opacity = "1";
		}
		if (action == "out") { 
			objectItem.style.backgroundImage = "url(images/menu-belka-off.gif)";
			objectItem.style.filter = "alpha(opacity=80)";
			//objectItem.style.-moz-opacity = ".70";
			objectItem.style.opacity = ".80";
		}		
}

function SubmenuRollOver(object, action)
{
		objectItem = document.getElementById(object);
		
		if (action == "over") { 
			objectItem.style.backgroundImage = "url(images/submenu-belka-on.gif)";
			objectItem.style.filter = "alpha(opacity=100)";
			//objectItem.style.-moz-opacity = ".90";
			objectItem.style.opacity = "1";
		}
		if (action == "out") { 
			objectItem.style.backgroundImage = "url(images/submenu-belka-off.gif)";
			objectItem.style.filter = "alpha(opacity=80)";
			//objectItem.style.-moz-opacity = ".70";
			objectItem.style.opacity = ".80";
		}		
}


function submitSearch()
{
		stringSearch = (document.getElementById('searchString').value);
		
		stringSearch.replace(" ", "+");

		document.location.href = "?searchString=" + stringSearch;

}
