var arrayTextos= null;
function generarArrayTextos(textos){
	var array = textos.split("#");

	arrayTextos = new Array(array.length);
	for(var i=0; i < array.length; i++){
		arrayTextos[i+1] = array[i];		
	}
}

function changeText(capa,numero_imagen){	
	document.getElementById(capa).innerHTML = arrayTextos[numero_imagen];
}

function textDefault(capa,numero_imagen){
	document.getElementById(capa).innerHTML = arrayTextos[numero_imagen];
}

function imageDefault(capa,opcion,menu,numero_imagen,lang){
	if(menu == 'B2')
		document.getElementById(capa).style.background = "url(/masdelrei/images/"+opcion+"/"+menu+"/pic_"+lang+".jpg)";
	else
		document.getElementById(capa).style.background = "url(/masdelrei/images/"+opcion+"/"+menu+"/pic"+numero_imagen+".jpg)";
}

function changeImage(capa,opcion,menu,numero_imagen){
	document.getElementById(capa).style.background = "url(/masdelrei/images/"+opcion+"/"+menu+"/pic"+numero_imagen+".jpg)";
}

function changeUnavailable(capa,opcion,menu,numero_imagen,lang){
	document.getElementById(capa).style.background = "url(/masdelrei/images/"+opcion+"/"+menu+"/pic_"+lang+".jpg)";
}

function chargeThumbnails(total,opcion,menu){
	for( var i=0; i < total; i++ ){
		document.getElementById("imagen_muestra_"+(i+1)).style.background = "url(/masdelrei/images/"+opcion+"/"+menu+"/thumb"+(i+1)+".jpg)";
		document.getElementById("imagen_muestra_"+(i+1)).style.backgroundRepeat = "no-repeat";
		document.getElementById("imagen_muestra_"+(i+1)).style["display"] = "block";
	}
}
