$(document).ready(function(){
   $("#dirque ul li a").lightBox();
   
   $("#sel").change(function(){
      valor = $(this).val();
      location.href = '/produtos/'+valor;
   });
   
   ar_fotos = Array();
	$("#grande").find("div").each(function() {
		ar_fotos.push(this.id);
		$("#"+this.id).mouseover(function(){
			clearInterval(slides);
		});
		$("#"+this.id).mouseout(function(){
			slides = setInterval("slide_show()", 4000);
		});
    });

    if (document.getElementById('grande')){
		slides = setInterval("slide_show()", 4000);
    }
});

idx_slide = 1;
function slide_show(){
	if (ar_fotos.length > 1){
		if (idx_slide < ar_fotos.length){
			$("#"+ar_fotos[idx_slide]).fadeIn(2000);
			$("#"+ar_fotos[idx_slide-1]).css('display', 'none');
			idx_slide++;
		} else {
			$("#"+ar_fotos[0]).fadeIn(2000);
			$("#"+ar_fotos[idx_slide-1]).css('display', 'none');
			idx_slide = 1;
		}
	}
}