

function initTooltips() {
	var myTips = new Tips($$('.woordlink'), {
        //maxTitleChars: 50, //I like my captions a little long
        maxOpacity: 1, //let's leave a little transparancy in there
		timeOut: 30, //the delay to wait to show the tip (how long the user must hover to have the tooltip appear). defaults to 100.
		fxDuration: 80, //the duration (in ms) for the transition effect when the tip to appears and disappears. defaults to 150.
		className: "thetooltip",
		move: false
    });

}
function addLoadEvent(func) {   
	var oldonload = window.onload;   
	if (typeof window.onload != 'function') {   
		window.onload = func;   
	}	else {   
			window.onload = function() {   
				oldonload();   
				func();   
			}   
		}   
}   

addLoadEvent(initTooltips);