function consultHover(id)
{
	document.getElementById("tr" + id).style.background = "url(/pics/consult_bg_hover.gif) repeat-x bottom";
	document.getElementById("a" + id).style.background = "url(/pics/consult_bg_white.gif) repeat-x bottom";
	document.getElementById("span" + id).style.background = "url(/pics/consult_bg_white.gif) repeat-x bottom";
	document.getElementById("count" + id).style.background = "url(/pics/consult_bg_white.gif) repeat-x bottom";
}

function consultUnHover(id)
{
	document.getElementById("tr" + id).style.background = "url(/pics/consult_bg.gif) repeat-x bottom";
	document.getElementById("a" + id).style.background = "#F8F5DE";
	document.getElementById("span" + id).style.background = "#F8F5DE";
	document.getElementById("count" + id).style.background = "#F8F5DE";
}