	function isIE()
	{
		if (navigator.appName.indexOf("Explorer") != -1)
			return true;
	}

	function hoverMainEntry(oEntry)
	{

		if(isIE())
		{
			oPrev = oEntry.previousSibling;
			oNext = oEntry.nextSibling;
		}
		else
		{
			oPrev = oEntry.previousSibling.previousSibling;
			oNext = oEntry.nextSibling.nextSibling;	
		}	
		
		
		if(oEntry.className == "entry_out")
			oEntry.className = "entry_over";
		else
			oEntry.className = "entry_out";
		
		
	//knt:if prev div is start...
		if(oPrev.className == "start_out" || oPrev.className == "start_over")
		{
			if(oPrev.className == "start_out")
				oPrev.className = "start_over";
			else
				oPrev.className = "start_out";
		}

	//knt:if prev div is seperator...
		if(oPrev.id != "selected" && (oPrev.className == "separator_out" || oPrev.className == "separator_over"))
		{
			if(oPrev.className == "separator_out")
				oPrev.className = "separator_over";
			else
				oPrev.className = "separator_out";
		}

	//knt:if next div is separator...
		if(oNext.id != "selected" && (oNext.className == "separator_out" || oNext.className == "separator_over"))
		{
			if(oNext.className == "separator_out")
				oNext.className = "separator_over";
			else
				oNext.className = "separator_out";
		}

	//knt:if next div is end...
		if(oNext.className == "end_out" || oNext.className == "end_over")
		{
			if(oNext.className == "end_out")
				oNext.className = "end_over";
			else
				oNext.className = "end_out";
		}
	}

	function hoverSubEntry(oEntry)
	{
		if(oEntry.className == "entry_out")
			oEntry.className = "entry_over";
		else
			oEntry.className = "entry_out";	
	}

	function hoverSubSubEntry(oEntry)
	{
		if(oEntry.className == "entry_sub_out")
			oEntry.className = "entry_sub_over";
		else
			oEntry.className = "entry_sub_out";	
	}