/*
SCRIPT QUE PERMITE PASSAR PELOS PRODUTOS DESTAQUES DO BLOCO DE PRODUTOS ATRAVÉS DE 
UM LINK "PRÓXIMO"

autor: Marcos Diniz Duarte.
*/



jQuery(document).ready(function() {
	var index = 0;
	var size = jQuery(".produto-destaque").size();

	jQuery(".produto-destaque").hide();
	jQuery(".produto-destaque:first").show();	
	
	jQuery(".proximo-destaque").click(function() {
		jQuery(".produto-destaque:eq("+index+")").hide();
		
		if (index == size-1) {
			index = 0;
		}else{
			index = index + 1;
		}
		
		jQuery(".produto-destaque:eq("+index+")").fadeIn();
	});
});


