
uLinks=document.getElementById('userlinks');
if(uLinks.innerHTML.match('Inbox'))
{
newMsg=false;
a=uLinks.getElementsByTagName("A");
for(i=0;i<a.length;i++)if(a[i].innerHTML.match(/Inbox\s\([0-9]+\)/)&&a[i].innerHTML.match(/[0-9]+/)>0)newMsg=i;
if(newMsg)
{
inbox=a[newMsg];
inbox.onmouseover=function(){ok=false}
inbox.onmouseout=function(){ok=true}
ok=true;
flash();
}
}
function flash()
{
if(ok)
{
inbox.style.fontWeight="Bold";
inbox.style.color="ffff00";
if(inbox.style.visibility=="visible")inbox.style.visibility="hidden";
else inbox.style.visibility="visible";
}
else
{
inbox.style.color="CC3300";
inbox.style.visibility="visible";
}
setTimeout("flash()",210);
}
