// JavaScript Document
window.onload = function()
{
	var boton_hombre = document.getElementById("boton_hombre");
	var submenu_hombre = document.getElementById("submenu_hombre");
	
	if( document.getElementById("mapa") )
	{
		inicia_mapa();
	}
	
	var elementos = document.getElementsByTagName("a");
	for( i = 0; i < elementos.length; i++ )
	{
		if( elementos[i].id.search(/fcb/) >= 0 )
		{
			elementos[i].className = "fcb";
			var texto_fcb = elementos[i].innerHTML.split("");
			var texto_final_fcb = "";
			for( var u = 0; u < texto_fcb.length; u++ )
			{
				var caracter = texto_fcb[u];
				if( u%2 == 0 )
				{
					caracter = "<span>" + caracter + "</span>";
				}
				
				texto_final_fcb += caracter;
			}		
			elementos[i].innerHTML = texto_final_fcb;
		}
	}
			
	submenu_hombre.style.display = 'none';
	
	if ( boton_hombre )
	{
		boton_hombre.onmouseover = function()  
		{
			boton_hombre.style.backgroundColor = '#6F6358';
			boton_hombre.style.backgroundPosition = '40px -96px';
			submenu_hombre.style.display = 'block';
		}
		boton_hombre.onmouseout = function()
		{
			submenu_hombre.style.display = 'none';
			boton_hombre.style.backgroundColor = '';
			boton_hombre.style.backgroundPosition = '40px 0px';
			
			submenu_hombre.onmouseover = function()  
			{
				submenu_hombre.style.display = 'block';
			}
			submenu_hombre.onmouseout = function()  
			{
				submenu_hombre.style.display = 'none';
			}
		}
	}
	
	//-------------------------------------------------------------
	
	var boton_mujer = document.getElementById("boton_mujer");
	var submenu_mujer = document.getElementById("submenu_mujer");
		
	submenu_mujer.style.display = 'none';
	
	if ( boton_mujer )
	{
		boton_mujer.onmouseover = function()  
		{
			boton_mujer.style.backgroundColor = '#6F6358';
			boton_mujer.style.backgroundPosition = '40px -96px';
			submenu_mujer.style.display = 'block';
		}
		boton_mujer.onmouseout = function()
		{
			submenu_mujer.style.display = 'none';
			boton_mujer.style.backgroundColor = '';
			boton_mujer.style.backgroundPosition = '40px 0px';
			
			submenu_mujer.onmouseover = function()  
			{
				submenu_mujer.style.display = 'block';
			}
			submenu_mujer.onmouseout = function()  
			{
				submenu_mujer.style.display = 'none';
			}
		}
	}
	
	//-------------------------------------------------------------
	
	var boton_coleccion = document.getElementById("boton_coleccion");
	var submenu_coleccion = document.getElementById("submenu_coleccion");
		
	submenu_coleccion.style.display = 'none';
	
	if ( boton_coleccion )
	{
		boton_coleccion.onmouseover = function()  
		{
			boton_coleccion.style.backgroundColor = '#6F6358';
			boton_coleccion.style.backgroundPosition = '20px -96px';
			submenu_coleccion.style.display = 'block';
		}
		boton_coleccion.onmouseout = function()
		{
			submenu_coleccion.style.display = 'none';
			boton_coleccion.style.backgroundColor = '';
			boton_coleccion.style.backgroundPosition = '20px 0px';
			
			submenu_coleccion.onmouseover = function()  
			{
				submenu_coleccion.style.display = 'block';
			}
			submenu_coleccion.onmouseout = function()  
			{
				submenu_coleccion.style.display = 'none';
			}
		}
	}
}

function lanzar_redes_sociales( url_red )
{
	window.open(url_red, "popup", 'width=900,height=700'); 
	return false;
}
