function fx_init(img)
{
if(img && img.filters && img.filters[0])
{
img.filters[0].apply();
img.filters[0].play();
}
}
function fx_over(img)
{
if(img && img.filters && img.filters[0])
{
img.filters[0].apply();
img.filters[0].play();
}
}
function high(img)
{
if(img && img.filters && img.filters.alpha)
{
img.filters.alpha.opacity=60;
if (window.highlighting)
clearInterval(highlighting);
}
}
function low(img)
{
if(img.filters)
{
tmp = img;
highlighting=setInterval("chlight(tmp)",50)
}
}
function chlight(img)
{
if(img.filters && img.filters.alpha)
{
if (img.filters.alpha.opacity<100)
{
img.filters.alpha.opacity+=4;
}
else
{
if (window.highlighting)
clearInterval(highlighting);
}
}
}
