function init_menu()
{
	var active_menu	= $("#menu .li.active").get(0);
	$("#menu .li").each(function(i)
	{
		this.onmouseover = function()
		{
			if(active_menu != this)
			{
				this.className	= 'li active';
				//$(this).find('.hover').css('top','7px');
			}
		}
		this.onmouseout	= function()
		{
			if(active_menu != this)
			{
				this.className	= 'li inactive';
				//$(this).find('.hover').css('top','-100px');
			}
		}		
	});
}

if ($.browser.msie && /^6/.test($.browser.version))
{
	jQuery(document).ready(init_menu);
}
