$(function(){var i=-1; $('.subLiMenu').each(function(){i++;
    if(i>10 && i<15) $(this).width($('#menuList').width()+32);
    else $(this).width($('#menuList').width()-9);
});});

function Starts()
{
	if ((navigator.userAgent.indexOf('MSIE') != -1) && (navigator.userAgent.indexOf('Opera') == -1))
	{
		var hEls = document.getElementById("Menu").getElementsByTagName("li");
		for (var i=0, len=hEls.length; i<len; i++) 
		{
			hEls[i].onmouseover=function Starts() { this.className += " jshover";

			if (document.getElementById("Fastsearch"))
			{
				var hElem = document.getElementById("Fastsearch").getElementsByTagName("select");

				for (var i = 0, len = hElem.length; i<len; i++)
				{
					hElem[i].style.display = "none";
				}
			}
			}
		}
	}
}
function Ends()
{
	if ((navigator.userAgent.indexOf('MSIE') != -1) && (navigator.userAgent.indexOf('Opera') == -1))
	{
		var hEls = document.getElementById("Menu").getElementsByTagName("li");
		
		for (var i=0, len=hEls.length; i<len; i++) 
		{
			hEls[i].onmouseout=function Ends() { this.className = this.className.replace(" jshover", "");

			if (document.getElementById("Fastsearch"))
			{
				var hElem = document.getElementById("Fastsearch").getElementsByTagName("select");

				for (var i = 0, len = hElem.length; i < len; i++)
				{
					hElem[i].style.display = "";
				}
			}
			}
		}
	}
}

function showInfo(id) {
    if ($('#info'+id).css('display') == 'none') $('#info'+id).fadeIn('fast');
    else $('#info'+id).fadeOut('fast');
    
    return false;
}
