
$().ready(function(){

	$('.BoxNavColors a').click(function(e) {
		e.preventDefault();

		$('.Exception1').attr('class', '');

		$(this).parent().attr('class', 'Exception1');

		$('.Box1 .MainProd').hide();
		$('.BoxBuy').hide();

		var imgEnd = $('.Exception1 img').attr('src');
		var corRef = $('.Exception1 img').attr('ref');

		var novaImg = imgEnd.replace('thumb', 'zoom');
	
		var img = new Image();
		$(img).load(function(){
			// ESCONDE A IMAGEM GRANDE - O CARREGANDO ESTÁ EM BACKGROUND
			$('.Box1 .MainProd').attr('src', novaImg);
			$('.BoxBuy img').attr('src', imgEnd);

			$('.BoxBuy a').attr('href', siteUrl + 'produtos/' + $('.Box1 h2').attr('class') + '/#' + corRef);

			// MOSTRA A IMAGEM GRANDE COM FADE
			$('.Box1 .MainProd').parent().css('visibility', 'visible');

			$('.Box1 .MainProd').fadeIn("fast");
			$('.BoxBuy').fadeIn("fast");

		}).attr('src', novaImg);


	//$('.Box1 .MainProd').attr('src', novaImg);
	});
});
