// Titulo de la ventana con scroll

var scrl = " 'No es fascismo, es mantener el orden' - Mercedes Rodrigo - ";
function scrlsts(){
	scrl = scrl.substring(1, scrl.length) + scrl.substring(0, 1);
	document.title = scrl;
	setTimeout("scrlsts()", 300);
};
//scrlsts();

// Enlaces de la barra izquierda

temas = new Array();
temas[0] = new Array("texto","enlace");
temas[0].texto = "WORKSHOP<br><font class='texto1s'>el taller del topo</font>";
temas[0].enlace = "../workshop/index.html";
temas[1] = new Array("texto","enlace");
temas[1].texto = "PIRATAS<br><font class='texto1s'>Galería fotográfica</font>";
temas[1].enlace = "../piratas/piratas.html";
temas[2] = new Array("texto","enlace");
temas[2].texto = "Fantasyrev<br><font class='texto1s'>Galería fotográfica</font>";
temas[2].enlace = "../fantasyrev2003/fantasyrev.html";
temas[3] = new Array("texto","enlace");
temas[3].texto = "Efeyl<br><font class='texto1s'>Galería fotográfica</font>";
temas[3].enlace = "../efeyl2003/efeyl.html";
temas[4] = new Array("texto","enlace");
temas[4].texto = "Terminalia<br><font class='texto1s'>13 Freaks<br>Lusitania, Mar de dudas<br>15 minutos de gloria</font><br>";
temas[4].enlace = "../terminalia/index.html";
temas[5] = new Array("texto","enlace");
temas[5].texto = "TOPOGRAFIA<br><font class='texto1s'>Galería de ilustraciones</font>";
temas[5].enlace = "../topografia/index.html";
temas[6] = new Array("texto","enlace");
temas[6].texto = "CYBERBOARD<br><font class='texto1s'>Gamebox para Hornet Leader y Dragon Noir</font><br>";
temas[6].enlace = "../cyberboard/index.html";
temas[7] = new Array("texto","enlace");
temas[7].texto = "HEAVY GEAR<br><font class='texto1s'>Diseños y dibujos</font>";
temas[7].enlace = "../heavygear/index.html";
temas[8] = new Array("texto","enlace");
temas[8].texto = '<img src="../imagenes/rss.png" border="0"><br><font class="texto1s">Español</font>';
temas[8].enlace = "http://toposolitario.es/tinc?key=Ww7WHjRg";
temas[9] = new Array("texto","enlace");
temas[9].texto = '<img src="../imagenes/rss.png" border="0"><br><font class="texto1s">English</font>';
temas[9].enlace = "http://toposolitario.es/tinc?key=IZXjLAfR";

// Creative commons
document.write('<table border="0" cellpadding="0" cellspacing="0" width="222">'
  + '<tr>'
  + '	<td width="222" height="50" align="center" valing="middle">'
  + '      <a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/3.0/es/"><img alt="Creative Commons License" style="border-width:0" src="http://i.creativecommons.org/l/by-nc-sa/3.0/es/88x31.png" /></a>'
  + '   </td>'
  + '</tr>'
  + '</table>');

for (i=0; i<temas.length; i++){
document.write('<table border="0" cellpadding="0" cellspacing="0" width="222">'
  + '<tr>'
  + '	<td width="42" height="12" background="../imagenes/CajaI01.jpg"><img src="../imagenes/nulldot.gif" width="42" height="12"></td>'
  + '	<td width="133" height="12" bgcolor="#FFFFFF"></td>'
  + '	<td width="47" height="12" background="../imagenes/CajaI11.jpg"><img src="../imagenes/nulldot.gif" width="47" height="12"></td>'
  + '</tr>'
  + '<tr>'
  + '	<td width="42" height="17" valign="top" background="../imagenes/CajaI03.jpg"><img src="../imagenes/CajaI02.jpg"></td>'
  + '	<td width="133" rowspan="2" bgcolor="#FFFFFF" valign="middle" align="center">'
  + '	<A HREF="' + temas[i].enlace + '"><font class="titulo1">' + temas[i].texto + '</font></a>'
  + '	</td>'
  + '	<td width="47" height="17" valign="top" background="../imagenes/CajaI13.jpg"><img src="../imagenes/CajaI12.jpg"></td>'
  + '</tr>'
  + '<tr>'
  + '	<td width="42" height="17" valign="bottom" background="../imagenes/CajaI03.jpg"><img src="../imagenes/CajaI04.jpg"></td>'
  + '	<td width="47" height="17" valign="bottom" background="../imagenes/CajaI13.jpg"><img src="../imagenes/CajaI14.jpg"></td>'
  + '</tr>'
  + '<tr>'
  + '	<td width="42" height="20" background="../imagenes/CajaI05.jpg"><img src="../imagenes/nulldot.gif" width="42" height="20"></td>'
  + '	<td width="133" height="20" bgcolor="#FFFFFF"></td>'
  + '	<td width="47" height="20" background="../imagenes/CajaI15.jpg"><img src="../imagenes/nulldot.gif" width="47" height="20"></td>'
  + '</tr>'
  + '</table>');
};