//<![CDATA[

/**
 * Realiza un efecto al pasar el ratón sobre las fotos en miniatura.
 */
function rolloverMiniaturas()
{
	$("#miniaturas li").hover(		
		function(e)
		{
			$(this).css("background-color", "#666");
			$(this).children(".capa").css("display", "none");
		},
		function(e)
		{
			$(this).css("background-color", "#191919");
			$(this).children(".capa").css("display", "block");
		}
	);
}

/**
 * Realiza un efecto al pasar el ratón sobre los enlaces del pie de página.
 */
function rolloverPie()
{
	var ruta;
	var directorio;
	var imagen;
	$("#pie a").hover(		
		function(e)
		{
			ruta = $(this).css("background-image");
			directorio = ruta.substr(0, ruta.lastIndexOf("/"));
			imagen = "_" + ruta.substr(ruta.lastIndexOf("/") + 1, ruta.indexOf(".png"));	
			$(this).css("background-image", directorio + "/" + imagen);
		},
		function(e)
		{
			ruta = $(this).css("background-image");
			directorio = ruta.substr(0, ruta.lastIndexOf("/"));
			imagen = ruta.substr(ruta.lastIndexOf("/") + 1).replace("_", "");
			$(this).css("background-image", directorio + "/" + imagen);
		}
	);
}

$(document).ready(
	function(e)
	{
		rolloverMiniaturas();
		rolloverPie();
	}
);

//]]>

