[code]<?/*voor syntax highlighting*/
function bug(chance,location) {
	if(Math.random()<chance) {
		document.getElementsByTagName('body')[0].innerHTML+='<img src="bug.gif" alt="" style="position:absolute;position:fixed;top:'+location[1]+'px;left:'+location[0]+'px;z-index:2000;"/>';
	}
}
setTimeout('bug(0.1,['+parseInt(Math.random()*1200)+','+parseInt(Math.random()*600)+'])',parseInt(Math.random()*10000));
/*voor syntax highlighting*/?>
