function swap()
{
	this.className="ie_fix";
}

function get_back()
{
	this.className="prompt";
}

function get_focus() 
{
	this.parentNode.parentNode.parentNode.className="ie_fix";
}

function get_blur() 
{
	this.parentNode.parentNode.parentNode.className="prompt";
}

function set_events()
{
	if (document.getElementById)
	{	
		var LI = document.getElementsByTagName("li");
		var nLI= LI.length;
		for(var c=0;c<nLI;c++)
		{ 
			if(LI[c].parentNode.parentNode.className=="prompt")
			{
				LI[c].firstChild.onfocus=get_focus;LI[c].firstChild.onblur = get_blur;
			}
			if(LI[c].className=="prompt")
			{
				LI[c].onmouseover=swap;LI[c].onmouseout=get_back;
			}
		}
	}
}