function menu()
{
	var titulos = new Array('¿Qui&eacute;nes somos?','RACSA Tips','Cr&eacute;dito','Directorio','Ubicaci&oacute;n','Contacto');
	var enlaces = new Array('#','#','#','#','ubica.php','#');
	var texto="<table style='vertical-align:middle;'><tr>";
	for(i=0;i<titulos.length;i++)
		{
			texto+='<td style=\'vertical-align:middle;color:white;text-align:center;\' width=130 height=50><a href="'+enlaces[i]+' target="pantalla"' +'">'+titulos[i]+'</a> </td>';
		}
	texto+='<td><a href="#"><img src="imagenes/mapa.png"></a></td>';
	texto+='<td><a href="index.php"><img src="imagenes/home.png"></a></td>';
	texto+='</tr></table>';
	document.getElementById('menu').innerHTML=texto;
}
function efectoLogo()
{
	var x = $(document);
	x = $('#banner');
	x.fadeOut(300);
	x.fadeIn(500);
	x = $('#promociones');
	x.fadeOut(300);
	x.fadeIn(500);	
	x.fadeOut(100);
	x.fadeIn(500);
}
