// JavaScript Document
$(document).ready(function()
{	
	$('#submenu-disenos').hide();
	$('#submenu-tienda').hide();
	$('#texto-privacidad').hide();

	$('#lista-productos li img').click(function()
	{
		var img = $(this).attr('src');
		img = img.replace("thumb/","");
		img = img.replace("png","jpg");

		if($('#imagen-producto img').attr('src')==img) return false; //No hacemos el animate si es el mismo producto		
		
		$('#imagen-producto img').animate({'opacity': '0'},{duration:300, complete : function() 
		{
			$('#imagen-producto img').attr('src',img).animate({'opacity': '1'}, 'slow');
		}});
	});
	
	$('#disenos').hover(function()
	{		
		 $('#submenu-disenos').show();		 
	},
    function()
    {
        $('#submenu-disenos').hide();
    });
	
	$('#tienda').hover(function()
	{		
		 $('#submenu-tienda').show();		 
	},
    function()
    {
        $('#submenu-tienda').hide();
    });	
	
	// Fotos tienda
	$('#fotos-tienda a').hide();
	$('#fotos-tienda a:first-child').show();	
			
	$('div a[rel=galeria]').fancybox({
		'transitionIn'		: 'fade',
		'transitionOut'		: 'fade',
		'titlePosition' 	: 'over',
		'titleFormat'		: function(title, currentArray, currentIndex, currentOpts) {
			return '<span id="fancybox-title-over">Imagen ' + (currentIndex + 1) + ' / ' + currentArray.length + (title.length ? ' &nbsp; ' + title : '') + '</span>';
		}
	});		
	
	//Texto privacidad formulario contacto
    $("#privacidad").click(function()
    {
        if($("#texto-privacidad").hasClass('visible'))
        {
            $("#texto-privacidad").hide();
        }
        else
        {
            $("#texto-privacidad").show();

        }
        $("#texto-privacidad").toggleClass("visible");
    });

    $('#texto-privacidad div.cerrar').click(function(){
        $('#texto-privacidad').hide();
        $("#texto-privacidad").toggleClass("visible");
    });	

});
