sfHover = function() {

// Setup the names of the divs	
	var divNames = new Array();
	divNames[0] = "thema";
	divNames[1] = "initiatieven";

// Run the onLoad script for each divname
	for(j=0;j<divNames.length;j++) {
		var sfEls = document.getElementById(divNames[j]).getElementsByTagName("LI");
		for (var i=0; i<sfEls.length; i++) {
			if ( sfEls[i] )
			{
				sfEls[i].onmouseover=function() {
					this.className+=" sfhover";
				}
				sfEls[i].onmouseout=function() {
					this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
				}
			}
		}
	}
}
if (window.attachEvent) window.attachEvent("onload", sfHover);