if (!document.getElementById)
    document.getElementById = function() { return null; }

function initializeHoverToggle(actuatorId, showTargetItemId,defaultTargetItemId) {
    var myShowTarget = document.getElementById(showTargetItemId);
    var myDefaultTarget = document.getElementById(defaultTargetItemId);
    var actuator = document.getElementById(actuatorId);
    var test = showTargetItemId;

    if (myShowTarget == null || actuator == null) return;
    if (window.opera) return;
	
	myDefaultTarget.style.display = "block";
    actuator.onmouseover = function() {
    	//alert(test);
        myShowTarget.style.display = "block";
        myDefaultTarget.style.display = "none";

        return false;
    }
    actuator.onmouseout = function() {
    	//alert(test);
        myShowTarget.style.display = "none";
        myDefaultTarget.style.display = "block";

        return false;
    }
}
