globalPageOnload=function(){
	/*var tmp=document.getElementById('tmp-menu');
	document.getElementById('cell-menu').innerHTML=tmp.innerHTML
	tmp.innerHTML=''*/
	window.CMM.start()
	try{
		var rc=document.getElementById('to-right');
		if(rc){
			rc.style.display="inline"
			if(typeof(rc.outerHTML)!='undefined'){//alert("tu")
				document.getElementById('content-left-panel').innerHTML=rc.outerHTML;
			}
			rc.outerHTML=''
		}
		
	}catch(e){
	}
	if(window.moduleType=='oferta'){
		var t=document.getElementById('title');
		t.innerHTML='<span id="span-oferta-title">'+t.innerHTML+'</span>'
		t.style.paddingTop=t.style.paddingRight=t.style.paddingBottom=t.style.paddingLeft=0
	}
	var relatedRef=document.getElementById("relatedLinks")
	//alert(relatedRef.childNodes.length)
	if(relatedRef){
		for(var i=0;i<relatedRef.childNodes.length;i++){
			if(relatedRef.childNodes[i].nodeName.toLowerCase()=="a"){
				relatedRef.childNodes[i].href+="?loc=bottom"
			}
		}
	}
	if(typeof(window.pageLevelOnload)!='undefined')
	window.pageLevelOnload();
}
onLoadQueue.appendOnLoad(globalPageOnload)