function dlCategories_OnMouseOut()
{
//clear all effects for all TD's
var thisSPAN = event.srcElement;
var thisTD = thisSPAN.parentElement;
var colTRs = thisTD.parentElement.parentElement.rows;
for (var i = 0; i <= colTRs.length - 1; i++)
{
colTRs(i).cells(0).style.backgroundColor = "white";
colTRs(i).cells(0).style.fontWeight = "normal";
if (colTRs(i).cells(0).childNodes[0].style.backgroundColor != "bisque")
{
colTRs(i).cells(0).childNodes[0].style.backgroundColor = "white";
colTRs(i).cells(0).childNodes[0].style.fontWeight = "normal";
};
};
};