window.addEvent('domready', function() {
	// external site links open in new window
	var links = document.getElementsByTagName('a');
	
	for (var i = links.length; i != 0; i--) {
		var a = links[i-1];
		if (!a.href) continue;
		if (!a.href.match(/wurts.com/)) a.onclick = function () { window.open(this.href); return false; };
	}
	
	$$('.new_window').addEvent('click', function(event) {
		window.open(this.href);
		event.preventDefault();
	})
	
	// tool tips
	var myResourceTips = new Tips($$('.resource_tip'), {
		maxTitleChars: 50,
		timeOut: 500,
		className: 'knowledge-doc'
	});
});
