onReady(function(){
 	var body = document.getElementsByTagName("body")[0];
	var iframe = document.createElement("iframe");
	iframe.setAttribute("width","100%");
	iframe.setAttribute("height","37px");
	iframe.setAttribute("scrolling","no");
	iframe.setAttribute("frameBorder","no");
	iframe.setAttribute("marginheight","0");
	iframe.setAttribute("marginwidth","0");
	iframe.setAttribute("src","http://www.digerati.com.br/api/barra-digerati.html");
	body.insertBefore(iframe, body.firstChild);		
}); 

function onReady(func){
	if(!(document.body==null)){
		func();
	}else{
		var func_rep = func;
		setTimeout(function(){ onReady(func_rep) },1);
	}
}
