
function MENU(nombre,URL1,URL2,URL,target){
    this.nombre = nombre;
	this.URL1 = URL1;
	this.URL2 = URL2;
	this.URL = URL;
	this.target = target;
	
}


var miArray = new Array(secc) 

miArray[0] = new MENU('quienes','media/es/mn_quienes_off.gif','media/es/mn_quienes_on.gif','editorial_quienes.cfm','_top');
miArray[1] = new MENU('novedades','media/es/mn_novedades_off.gif','media/es/mn_novedades_on.gif','editorial_novedades.cfm','_top'); 
miArray[2] = new MENU('prensa','media/es/mn_prensa_off.gif','media/es/mn_prensa_on.gif','editorial_prensa.cfm','_top'); 
miArray[3] = new MENU('catalogo','media/es/mn_catalogo_off.gif','media/es/mn_catalogo_on.gif','editorial_catalogo.cfm','_top');
miArray[4] = new MENU('autores','media/es/mn_autores_off.gif','media/es/mn_autores_on.gif','editorial_autores.cfm','_top');
miArray[5] = new MENU('enlaces','media/es/mn_enlaces_off.gif','media/es/mn_enlaces_on.gif','editorial_enlaces.cfm','_top');



var secc=miArray.length


	 

document.write('<table border=0 cellspacing=0 cellpadding=0 align=right><tr>');

document.writeln("<td><img src=\'img/mn_sep.gif\' style=\'margin-left:10px; margin-right:3px\'></td>");

    for (i=0;i<miArray.length;i++)
	{
       if (seccion==miArray[i].nombre)
       { 
	       document.writeln("<td><a href=\'" + miArray[i].URL + "\' target=\'" + miArray[i].target + "\' class=nm><img src=\'"+ miArray[i].URL2 +"\' border=0></a></td>"); 
		  
                                            			   
       }
		
	    else
        {
	   	  
     	    document.writeln("<td><a href=\'" + miArray[i].URL + "\' target=\'" + miArray[i].target + "\' class=nm><img src=\'"+ miArray[i].URL1 +"\' border=0></a></td>"); 
            
	   }
	    document.writeln("<td><img src=\'img/mn_sep.gif\' hspace=3></td>");  
     } 


document.writeln("<td><img src=\'img/pixel.gif\' style=\'margin-left:70px; margin-right:5px\' border=0></td>");  
document.write('</tr></table>'); 