$(document).ready(function() {
	// FancyBox - Inicialización
	//var efectos = $("a[rel=fancy]");
	var efectos = $(".fancy_oculto a[rel=fancy]");
	efectos.fancybox({
		'autoScale' : true,
		'speedIn'		:	1000, 
		'speedOut'		:	200, 
		'overlayShow'	:	true,
		'hideOnContentClick': true
	});
	
	$("ul.navfooter li").each(function(){
		$(this).removeClass();
	}),
	$("ul.navfooter li:last").addClass('final');
	$("ul.listas li a").click(function(event){	
		event.preventDefault();
		if ($(this).attr('title') != "") {
			$('#catalogo h2').text($(this).attr('title'));
			$(".muestras a").attr("title",$(this).attr('title'));
			$('input[name=referencia]').attr('value', $(this).attr('title'));
		}
		else {
			$('#catalogo h2').html("&nbsp;");
		}
		
		$(this).find('img').each(function(){
			var hola = $(this).attr("src");
			hola=hola.replace("-mini","-grande");
			$(".cont-imagen").css('background','url('+ hola + ') no-repeat center top');
			$(".muestras a").attr("href",''+hola+'');
		});
	});
	
	$(".muestras a").click(function(event) {
		event.preventDefault();
		$imagen = $(this).attr('href');

		$elementos = $(".fancy_oculto a[rel=fancy]");
		$elementos.each(function(){
			if ($imagen == $(this).attr('href')) {

				$(this).trigger('click');
			}

		});
		
	});

});
