
// ------------------------------------------------------------------------------------------------
// Add style to list items for roll-over effect - MSIE only
// ------------------------------------------------------------------------------------------------
function ToolTips() {

    if (document.all && document.getElementById) {

	var aItems = document.getElementById("shd_container").getElementsByTagName("li");

	for (var i = 0; i < aItems.length; i++) {

	    aItems[i].onmouseover = function() {
		this.className += " tooptip";
	    }

	    aItems[i].onmouseout = function() {
		this.className = this.className.replace(new RegExp(" tooptip\\b"), "");
	    }
	}
    }
}