var isNS, isIE

function init() 
{
 b=navigator.appName;
 v=navigator.appVersion;
 isNS = (b.indexOf('Netscape') >= 0);
 isIE = (b.indexOf('Microsoft') >= 0);
}


function m_onmouseout()
{
 if (isIE)
 {event.fromElement.style.color="green"}
}

function m_onmouseover()
{
 if (isIE)
 {event.toElement.style.color="#F79B02"}
} 



