//Funciones para resaltar los textos del menu de destinos
	function marcar(capa)	
	{
		capa.style.textIndent='5px';
		capa.style.color='#DE0000';
		capa.style.backgroundColor='#FFE28C';
	}
	function desmarcar(capa)
	{
		capa.style.textIndent='0px';
		capa.style.color='Black';
		capa.style.backgroundColor='';
	}
	function marcar_2(capa)	
	{
		capa.style.textIndent='5px';
		capa.style.color='#DE0000';
		capa.style.backgroundColor='#FFFFFF';
	}
	function desmarcar_2(capa)
	{
		capa.style.textIndent='0px';
		capa.style.color='Black';
		capa.style.backgroundColor='';
	}
	function marcar_3(capa)	
	{
		capa.style.textIndent='5px';
		capa.style.color='#DE0000';
		capa.style.backgroundColor='#FFFFFF';
	}
	function desmarcar_3(capa)
	{
		capa.style.textIndent='0px';
		capa.style.color='Black';
		capa.style.backgroundColor='';
	}
	function marcar_4(capa)	
	{
		capa.style.color='#DE0000';
		capa.style.backgroundColor='#FFE28C';
	}
	function desmarcar_4(capa)
	{
		capa.style.color='Black';
		capa.style.backgroundColor='';
	}
	function marcar_5(capa)	
	{
		capa.style.textDecoration='underline';
	}
	function desmarcar_5(capa)
	{
		capa.style.textDecoration='';
	}

	function marcar_6(capa)	
	{
		capa.style.color='#DE0000';
		capa.style.backgroundColor='#FFE28C';
	}
	function desmarcar_6(capa)
	{
		capa.style.color='Black';
		capa.style.backgroundColor='';
	}
//Funcion para remarcar el menu superior
function subrayar(id)
		{
			eval("document.getElementById('" + id + "_txt').style.color='#DE0000'");
		}
	function no_subrayar(id)
		{
			eval("document.getElementById('" + id + "_txt').style.color='#000000'");
		}
		
function addBookmark()
	{
	var url = "http://www.DoYouSpain.com";
	var title = "DoYouSpain, Car Hire Spain";
	if (window.sidebar) { // Mozilla Firefox Bookmark
		window.sidebar.addPanel(title, url,"");
	} else if( window.external ) { // IE Favorite
		try {window.external.AddFavorite( url, title); } catch(e) {alert('Ctrl + D');} }
	else if(window.opera && window.print) { // Opera Hotlist
		var elem = document.createElement('a');
                elem.setAttribute('href',url);
                elem.setAttribute('title',title);
                elem.setAttribute('rel','sidebar');
                elem.click(); }
	}

	// -->

	function fCambioPais(sIdioma) {

	  var selectDestino = document.getElementById('destino');	  

	  //Ajax JQUERY
	  $.ajax({
	    url: '/ajax_destinosPaises.asp',
	    type: 'POST',
	    async: true,
	    data: "pais=" + $("#pais").val() + "&idioma=" + sIdioma,
	    processData: true,
	    timeout: 150000,
	    beforeSend: function(XMLHttpRequest) {
	      selectDestino.length = 0;
	      var nuevaOpcion = document.createElement("option");
	      nuevaOpcion.value = 0;
	      nuevaOpcion.innerHTML = "Loading...";
	      selectDestino.appendChild(nuevaOpcion);
	      selectDestino.disabled = true;
	    },
	    success: function(data, textStatus, XMLHttpRequest) {
	      selectDestino.parentNode.innerHTML = data;	      
	    },
	    error: function(XMLHttpRequest, textStatus, errorThrown) {
	      //alert("ERROR: " + textStatus);
	    }
	  });

	}	


var j;
var imagenesJ = new Array("/images/blanco.jpg", "/images/head.jpg", "/images/formCoche_Descuento.jpg", "/images/formHotel_Descuento.jpg", "/images/fondoHome.png", "/images/flag-gb.gif", "/images/flag-es.gif", "/images/flag-de.gif", "/images/flag-it.gif", "/images/flag-nl.gif", "/images/flag-fr.gif", "/images/punto.jpg", "/images/NoHiddenCost.jpg", "/images/PayOnArrival.jpg", "/images/PeaceOfMind.jpg", "/images/pie_izquierda.png", "/images/top.png", "/images/top_ie.png", "/images/bottom.png", "/images/bottom_ie.png", "/images/repeat_y.png", "/images/repeat_y_ie.png", "/images/pie_derecha.png", "/images/cocheHomePie.jpg", "/images/aeropuertoPie.jpg", "/images/telefono.png", "/images/newWeb.jpg");
var lista_imagenesJ = new Array();

for (j in imagenesJ) {
  lista_imagenesJ[j] = new Image();
  lista_imagenesJ[j].src = imagenesJ[j];
}





