$(document).ready ( function()
{
	if($('#produto').length > 0)
	{
		// Inicia select customizáveis
		$(".sel-Linha").each(function() {
			selects[jQuery(this).attr("id")] = new jQuery.ComboBox({id:jQuery(this).attr("id"),visibleItems:0});
			selects[jQuery(this).attr("id")].render();
		});
	
		selects.selLinha.change(function() 
		{
			window.location.href = SITE_CAMINHO_SITE_ABSOLUTO + 'produtos/' + this.select.val() + '/';
		});

		
		$('.link-imagem').ready(function()
		{
			$('.link-imagem').css('background-image','none');
		});
	
		$('.link-imagem').live('click', function() 
		{
			$('.lista-produtos li').removeClass('ativo');
			$(this).parent().addClass('ativo');
			$('#principal').addClass('loading-grande').html('');
			var referenciaLinha = $(this).attr('href');
			if(referenciaLinha == '')
			{
				return false;
			}
			$.ajax(
			{
				url: SITE_CAMINHO_SITE_ABSOLUTO + "acao/Produto.php",
				data: {
					ReferenciaLinha: referenciaLinha
				},
				type: 'POST',
				success: function(resposta)
				{
					$('#principal').html(resposta);
					$('#principal').removeClass('loading-grande');
					$('#principal .imagem-produto img').hide().fadeIn(1000);
				}
			 });
			 
			 return false;
		});
	}
});