
$(document).ready(function() {
						   
	//slide preparado para cinco fades					   
	
	var cont1 = 1;
	var cont2 = 2;
		
	function automat() {
		$('#v-fade-' + cont1).fadeOut("slow");
		$('#v-fade-' + cont2).fadeIn("slow");
		cont1++;
		cont2++;
		if(cont1==6) cont1 = 1;
		if(cont2==6) cont2 = 1;
	}
		

	var id = setInterval(automat, 4000);
	
	$('#home-arquitectura').mouseover(function() {
		if($(this).hasClass('this-seg') == false){
			id = window.clearInterval(id);
			$('#v-fade-2, #v-fade-3, #v-fade-4, #v-fade-5').fadeOut("slow");
			$('#v-fade-1').fadeIn("slow");
			$(this).toggleClass('this-seg');
			$('#home-civil, #home-design, #home-interior, #home-chave').removeClass('this-seg');
		}
	});
	
	$('#home-civil').mouseover(function() {
		if($(this).hasClass('this-seg') == false){
			id = window.clearInterval(id);
			$('#v-fade-1, #v-fade-3, #v-fade-4, #v-fade-5').fadeOut("slow");
			$('#v-fade-2').fadeIn("slow");
			$(this).toggleClass('this-seg');
			$('#home-design, #home-interior, #home-chave, #home-arquitectura').removeClass('this-seg');
		}
	});
	
	$('#home-design').mouseover(function() {
		if($(this).hasClass('this-seg') == false){
			id = window.clearInterval(id);
			$('#v-fade-1, #v-fade-2, #v-fade-4, #v-fade-5').fadeOut("slow");
			$('#v-fade-3').fadeIn("slow");
			$(this).toggleClass('this-seg');
			$('#home-civil, #home-interior, #home-chave, #home-arquitectura').removeClass('this-seg');
		}
	});
		
	$('#home-interior').mouseover(function() {
		if($(this).hasClass('this-seg') == false){
			id = window.clearInterval(id);
			$('#v-fade-1, #v-fade-2, #v-fade-3, #v-fade-5').fadeOut("slow");
			$('#v-fade-4').fadeIn("slow");
			$(this).toggleClass('this-seg');
			$('#home-civil, #home-design, #home-chave, #home-arquitectura').removeClass('this-seg');
		}
	});
		
	$('#home-chave').mouseover(function() {
		if($(this).hasClass('this-seg') == false){
			id = window.clearInterval(id);
			$('#v-fade-1, #v-fade-2, #v-fade-3, #v-fade-4').fadeOut("slow");
			$('#v-fade-5').fadeIn("slow");
			$(this).toggleClass('this-seg');
			$('#home-civil, #home-design, #home-interior, #home-arquitectura').removeClass('this-seg');
		}
	});
	
		
});

