function ProdutoDetalhe()
{

	if(jQuery("#listagem-cores").length > 0)
	{
		jQuery("a.produtominiatura").click(function()
		{
			var foto = jQuery(this).find("img:first");
			jQuery("#imgAmpliada").attr(
			{
				"src":foto.attr("src").replace("/miniatura",""),
				"alt":foto.attr("alt")
			});
			
			jQuery("#corproduto").html(jQuery(this).next().val());
			jQuery("#refproduto").html(foto.attr("alt"));
			return false;
		});
		
	}
		
}

$(document).ready(function() {
	
	if ($("#hdnColecao").val() == 2)
	{
		$(".detalhe-produto .linha .lk-fall-collection").addClass('ativo');
	}
	else
	{
		$(".detalhe-produto .linha .lk-spring-summer-collection").addClass('ativo');
	}
});