
function addLoadEvent(func)
{
	var oldonload = window.onload;
	if (typeof window.onload != 'function') {
		window.onload = func;
	} else {
		window.onload = function() {
			oldonload();
			func();
		}
	}
}
addLoadEvent(loadWibsiteBanner);
function loadWibsiteBanner()
{
	if (document.getElementsByTagName && document.getElementsByTagName('body')){
		var b = document.getElementsByTagName('body')[0];
		var w = document.createElement('div');
		w.id = 'wibsitebanner';
		w.innerHTML = 'WibPeople: <a href=\"http://wibsite.com/2010/01/using-the-new-wibstats-system/\">you have new statistics toys to play with, click here for details</a>';
		b.appendChild(w);
	}
}
		