var narr=new Array();
function linkobj(id, tit,url,thumb){
this.id=id; this.title=tit; this.url=url;
}
function gffrollover(){
var tgt=this.firstChild
if(!tgt)return
if(tgt.style.filter != undefined){
tgt.style.filter = "alpha(opacity=80)";
}else{
tgt.style.opacity='0.80';
}
}
function gffrollout(){
var tgt=this.firstChild
if(!tgt)return
if(tgt.style.filter != undefined){
tgt.style.filter = "alpha(opacity=30)";
}else{
tgt.style.opacity='0.30';
}
}
narr[0]= new linkobj(356, "Entrevista a Jorg Schauer" , "/portal-relojes/blog-relojes-relojeria/a356/entrevista-a-jorg-schauer.html");narr[1]= new linkobj(355, "Eterna Spherodrive" , "/portal-relojes/tecnica-relojes-mecanica/a355/eterna-spherodrive.html");narr[2]= new linkobj(354, "Eterna: una mirada a los nuevos calibres" , "/portal-relojes/blog-relojes-relojeria/a354/eterna-una-mirada-a-los-nuevos-calibres.html");narr[3]= new linkobj(353, "Premios Relojes Especiales al Reloj del Aņo 2009" , "/portal-relojes/blog-relojes-relojeria/a353/premios-relojes-especiales-al-reloj-del-aņo-2009.html");narr[4]= new linkobj(351, "Eterna: El interior de la manufactura" , "/portal-relojes/blog-relojes-relojeria/a351/eterna-el-interior-de-la-manufactura.html");narr[5]= new linkobj(350, "Visita a la marca Eterna. Parte I" , "/portal-relojes/blog-relojes-relojeria/a350/visita-a-la-marca-eterna-parte-i.html");
var slot01=document.getElementById("gffslot01");
if(slot01){
for(i=0;i<6;i++){
var porban=document.createElement("img");
porban.src="/portalre/aimages/" + (narr[i].id % 30)+ "/" + narr[i].id + ".tit.jpg";
porban.style.width="100%"; porban.style.height="22px"; porban.style.border="none";
if(i>0){
if(porban.style.filter != undefined){
porban.style.filter = "alpha(opacity=30)";
}else{
porban.style.opacity='0.30';
}
}
porban.style.margin='0px 0px -2px 0px';
porban.onmouseover=function() {gffroll(this)};
var portit=document.createElement("a");
portit.appendChild(porban);
portit.innerHTML+= "
" + narr[i].title + "
";
portit.href= narr[i].url;
portit.style.fontSize="8pt"; portit.style.textDecoration="none" ;
portit.onmouseover=gffrollover;
portit.onmouseout=gffrollout;
portit.onclick= function(){urchinTracker('/clickto/ForumToPortal')};
slot01.appendChild(portit);
}
}