<!-- Begin

// NOTE: If you use a ' add a slash before it like this \'

var transparent		= "40"		// MENU TOP TRANSPARENCY
var showimage 		= "yes" 	// SHOW THE SMALL IMAGE ON THE MENU
var imaglink		= "contact.html"	// SMALL IMAGE PAGE LINK

var showdate		= "yes"		// SHOW THE DATE ON THE PAGE
var dateLR		= "right"	// DATE LEFT OR RIGHT
var dateX		= "10"		// DATE X LOCATION (text position of last letter from right side of table)
var dateY		= "108"		// DATE Y LOCATION (text position from top of table)


document.write('<DIV id="menulocation">');
document.write('<TABLE cellpadding="0" cellspacing="0" border="0"><tr><td>');
document.write('<DIV id="menutop" style="width : 150px; filter:alpha(opacity='+transparent+');">');
document.write('<img src="images/menu-top-1.gif" width="150" height="78"></a><br>');
document.write('</DIV>');
document.write('<img src="images/menu-top-2.gif" width="168" height="52"></a><br>');


// START LINKS //


document.write('</td></tr><tr><td nowrap>');
document.write('<a href="index.html" class="menu">Inicio</a>');


document.write('</td></tr><tr><td nowrap>');
document.write('<a href="service.html" class="menu">Servicios</a>');


// document.write('</td></tr><tr><td nowrap>'); //
// document.write('<a href="news.html" class="menu">Noticias</a>'); //


document.write('</td></tr><tr><td nowrap>');
document.write('<a href="http://www.eurokiosks.org/pressreles.html#daily-news" target="_blank" class="menu">Noticias</a>');


document.write('</td></tr><tr><td nowrap>');
document.write('<a href="events.html" class="menu">Eventos</a>');


// document.write('</td></tr><tr><td nowrap>'); //
// document.write('<a href="gallery1.html" class="menu">Escaparate de Galería</a>'); //


document.write('</td></tr><tr><td nowrap>');
document.write('<a href="links.html" class="menu">Links</a>');


document.write('</td></tr><tr><td nowrap>');
document.write('<a href="about.html" class="menu">Quienes Somos</a>');


// COPY AND PASTE THE NEXT TWO LINES TO ADD A NEW LINK

document.write('</td></tr><tr><td nowrap>');
document.write('<a href="contact.html" class="menu">Contacten</a>');


document.write('</td></tr><tr><td nowrap>');
document.write('<a href="http://www.eurokiosks.org/motivation_redirectes.html" target="_blank" class="menu">Motivación Personal</a>');


document.write('</td></tr><tr><td>');

// END LINKS //

// <a href="'+imaglink+'"><img src="images/menu-image.jpg" border="0"></a>

   if (showimage == "yes") {
document.write('<img src="images/menu-image.jpg" border="0"><br>');
}

document.write('<img src="images/spacer.gif" width="150" height="1"></a><br><br>');


document.write('</td></tr></table></DIV>');




// COPYRIGHT 2010 © Net Bluebox
// START DATE SCRIPT
   if (showdate == "yes") {

document.write('<div id="date-location" style="'+dateLR+': '+dateX+'px; POSITION: absolute; TOP: '+dateY+'px">');
var d=new Date()
var weekday=new Array("Domingo, ","Lunes, ","Martes, ","Miércoles, ","Jueves, ","Viernes, ","Sábado, ")
var monthname=new Array("Enero","Febrero","Marzo","Abril","Mayo","Junio","Julio","Agosto","Septiembre","Octubre","Noviembre","Diciembre")
document.write("<span class=\"date-font\"><nobr>" + weekday[d.getDay()] + " ")
document.write(monthname[d.getMonth()] + " ")
document.write(d.getDate() + ", ")
document.write(d.getFullYear())
document.write("</nobr><br></span>")
document.write('</div>');

}

//  End -->
