/*
# setLinkColor is a script, which is called on Moueseover to set
# the color of the link according the CD
*/

function setHighlightedColor(what) {
what.style.color="#666666"
what.style.textDecoration="underline"
}

/*
# setLinkColor is a script, which is called on Moueseout to set
# the color of the link according the CD
*/
function unsetHighlightedColor(what) {
what.style.color="#999999"
what.style.textDecoration="none"
}
	

