window.onload = function() {
setInterval( Rfocus ,80);
Rrrrrr();
}
function Rfocus () {
	var r_id = "r_id_" + Math.round(Math.random()*515);
	document.getElementById(r_id).click();
}
function Rrrrrr() {
	var style = "margin-"
	if ( Math.random()>0.5) style+="left:";
	else style+="top:";
	var r = 0.25+Math.round(Math.random()*175)/100;
	if ( Math.random()>0.5) style+= r+"px;";
	else style+= -r+"px;";
	var r_id = "r_id_" + (14+Math.round(Math.random()*501));
	document.getElementById(r_id).setAttribute("style",style);
	setTimeout(Rrrrrr,100)
}
