var arridcasas = new Array();
var primero = false;

function clickcasa(nro, idcasa)
{
	arridcasas[nro] = idcasa;
	
	var olddiv = document.getElementById('botonescasa');
	if (olddiv)
	{
		olddiv.parentNode.removeChild(olddiv);
	}

	var newdiv=document.createElement("div");
	//newdiv.innerHTML = '<div id="construi"><img onclick="gotocasa('+idcasa+')" src="/images/barrios-cuerpo/construi.jpg" id="Image9" onmouseover="MM_swapImage(\'Image9\',\'\',\'/images/barrios-cuerpo/construi-over.jpg\',1)" onmouseout="MM_swapImgRestore()" border="0" /></div><div id="voluntarios"><img onclick="showvoluntarios('+idcasa+')" src="/images/barrios-cuerpo/voluntarios.jpg" id="Image10" onmouseover="MM_swapImage(\'Image10\',\'\',\'/images/barrios-cuerpo/voluntarios-over.jpg\',1)" onmouseout="MM_swapImgRestore()" border="0" /></div>';
	newdiv.innerHTML = '<div id="construi"><img onclick="gotocasa('+idcasa+')" src="/images/barrios-cuerpo/construi.jpg" id="Image9" onmouseover="MM_swapImage(\'Image9\',\'\',\'/images/barrios-cuerpo/construi-over.jpg\',1)" onmouseout="MM_swapImgRestore()" border="0" /></div>';
	newdiv.id = 'botonescasa';
	newdiv.style.display = 'none';
	document.getElementById("subcasa"+nro).appendChild(newdiv);
	
	if (arridcasas[1] && document.getElementById("subcasa1"))
	{
		document.getElementById("subcasa1").onmouseover = function() { clickcasa(1, arridcasas[1]); };
	}
	if (arridcasas[2] && document.getElementById("subcasa2"))
	{
		document.getElementById("subcasa2").onmouseover = function() { clickcasa(2, arridcasas[2]); };
	}
	if (arridcasas[3] && document.getElementById("subcasa3"))
	{
		document.getElementById("subcasa3").onmouseover = function() { clickcasa(3, arridcasas[3]); };
	}
	if (arridcasas[4] && document.getElementById("subcasa4"))
	{
		document.getElementById("subcasa4").onmouseover = function() { clickcasa(4, arridcasas[4]); };
	}
	if (arridcasas[5] && document.getElementById("subcasa5"))
	{
		document.getElementById("subcasa5").onmouseover = function() { clickcasa(5, arridcasas[5]); };
	}
	if (arridcasas[6] && document.getElementById("subcasa6"))
	{
		document.getElementById("subcasa6").onmouseover = function() { clickcasa(6, arridcasas[6]); };
	}
	if (arridcasas[7] && document.getElementById("subcasa7"))
	{
		document.getElementById("subcasa7").onmouseover = function() { clickcasa(7, arridcasas[7]); };
	}
	if (arridcasas[8] && document.getElementById("subcasa8"))
	{
		document.getElementById("subcasa8").onmouseover = function() { clickcasa(8, arridcasas[8]); };
	}
	
	document.getElementById("subcasa"+nro).onmouseover = '';
	
	$('#botonescasa').fadeIn('slow');
}

function showvoluntarios(idcasa)
{
	$.fn.colorbox({href:"/voluntarios.php?idcasa="+idcasa, innerWidth:"925px", innerHeight:"516px", iframe:true, scrolling: false});
}

function gotocasa(idcasa)
{
	var url = '/casa/' + idcasa;
	
	if (document.getElementById('urlfriendlycasa'+idcasa))
	{
		if (document.getElementById('urlfriendlycasa'+idcasa).value)
		{
			url = '/casa/' + document.getElementById('urlfriendlycasa'+idcasa).value + '/' + idcasa;
		}
	}
	
	window.location.href = url;
}

function showregistro(idcasa)
{
	$.fn.colorbox({href:"/registro.php?idcasa="+idcasa, innerWidth:"925px", innerHeight:"516px", iframe:true, scrolling: false});
}

function showsocial(idcasa)
{

	if (document.getElementById('mapa'))
	{
		document.getElementById('mapa').style.visibility = 'hidden';
	}
	if (document.getElementById('video'))
	{
		document.getElementById('video').style.visibility = 'hidden';
	}
	$.fn.colorbox({href:"/social.php?idcasa="+idcasa, innerWidth:"925px", innerHeight:"516px", iframe:true, scrolling: false, onClosed: function(){ if (document.getElementById('mapa')) {document.getElementById('mapa').style.visibility = 'visible';} if (document.getElementById('video')) {document.getElementById('video').style.visibility = 'visible';} }});
}

function showsocialbar(idbarrio)
{

	if (document.getElementById('mapa'))
	{
		document.getElementById('mapa').style.visibility = 'hidden';
	}
	if (document.getElementById('video'))
	{
		document.getElementById('video').style.visibility = 'hidden';
	}
	$.fn.colorbox({href:"/social.php?idbarrio="+idbarrio, innerWidth:"925px", innerHeight:"516px", iframe:true, scrolling: false, onClosed: function(){ if (document.getElementById('mapa')) {document.getElementById('mapa').style.visibility = 'visible';} if (document.getElementById('video')) {document.getElementById('video').style.visibility = 'visible';} }});
}

function showterminos()
{
	if (document.getElementById('mapa'))
	{
		document.getElementById('mapa').style.visibility = 'hidden';
	}
	if (document.getElementById('video'))
	{
		document.getElementById('video').style.visibility = 'hidden';
	}
	$.fn.colorbox({href:"/terminos.php", innerWidth:"925px", innerHeight:"516px", iframe:true, scrolling: false, onClosed: function(){ if (document.getElementById('mapa')) {document.getElementById('mapa').style.visibility = 'visible';} if (document.getElementById('video')) {document.getElementById('video').style.visibility = 'visible';} }});
}

function showterminosback(idcasa)
{
	$.fn.colorbox({href:"/terminos.php", innerWidth:"925px", innerHeight:"516px", iframe:true, scrolling: false, onClosed: function(){ showregistro(idcasa)}});
}
