/*
 * Index page scripts 
 */

/* 
 * Preload onmouseover images
 */
function preload_image(_image) {
	var image = new Image();
	image.src = _image;
}

/* 
 * Change country image onmouseover on index page 
 */
function change_image (region) {
	var ShowItem = top.document.getElementById("country_image");
//	var LinkItem = top.document.getElementById("country_" + region);
	ShowItem.style.backgroundImage = 'url(img/spain_1024_' + region + '.gif)';
//	LinkItem.style.textDecoration = "underline";
	return true;
}

/* 
 * Change back country image onmouseout on index page
 */ 
function hide_image (region) {
	var ShowItem = document.getElementById("country_image");
//	var LinkItem = document.getElementById("country_" + region);
	ShowItem.style.backgroundImage = 'url(img/none.gif)';
//	LinkItem.style.textDecoration = "none";
	return true;
}

/*
 * Popup new news window
 */
var newWin;
function popUp(page, name, details)
{
	newWin=window.open(page, name, details);
	newWin.focus();    
	return false;  
}

function mostrar_amigos(que){
    document.location="#top";
	im=que.src;
	im=im.replace("/peq","");
    texto="<div style=\"width:100%\" border=0><img src=\""+im+"\" onclick=\"ocultar_amigos();\" class=foto_amigos title=\"pulsa para continuar\"></div>";
	document.getElementById("span_amigos_foto").innerHTML=texto;
    document.getElementById("id_amigos_titulo").style.display="none"; 
	document.getElementById("id_amigos_foto").style.display="";
//    alert(texto);
}

function ocultar_amigos(){
    document.getElementById("id_amigos_titulo").style.display=""; 
	document.getElementById("id_amigos_foto").style.display="none";
}

function mostrar_divertidas_borrar(que){
    document.location="#top";
	im=que.src;
	im=im.replace("/peq","");
    texto="<div style=\"width:100%\" border=0><img src=\""+im+"\" onclick=\"ocultar_divertidas();\" class=foto_divertidas title=\"pulsa para continuar\"></div>";
	document.getElementById("span_divertidas_foto").innerHTML=texto;
    document.getElementById("id_divertidas_titulo").style.display="none"; 
	document.getElementById("id_divertidas_foto").style.display="";
//    alert(texto);
}
function mostrar_divertidas(que){
    document.location="#top";
	im=que.src;
	im=im.replace("/peq","");
    texto="<div style=\"width:100%\" border=0><img src=\""+im+"\" class=\"jqPuzzle\"></div>";
	document.getElementById("span_divertidas_foto").innerHTML=texto;
    document.getElementById("id_divertidas_titulo").style.display="none"; 
	document.getElementById("id_divertidas_foto").style.display="";
//  alert(texto);
}



function ocultar_divertidas(){
    document.getElementById("id_divertidas_titulo").style.display=""; 
	document.getElementById("id_divertidas_foto").style.display="none";
}

archivo="";
function hacer_puzzle(cual){
   archivo=cual;
   document.getElementById("iframeMapa").src="ventanaPuzzle.html"
}

swmusica=true;
function verMusica(){
	if (swmusica) {document.getElementById("mimusica").stop(); swmusica=false;} else  {document.getElementById("mimusica").play(); swmusica=true;} 
}



