$(function(){
	
	/* CARROUSSEL */
	
	var carroussel_on_progress = false;
	$('#carroussel .image img').click(function(){
		if(!$(this).parent('.image').hasClass('active') && !carroussel_on_progress){
			
			var nom = $(this).attr('alt');
			var nb = $(this).parent('.image').prevAll('.image').length;
			if(nb <= 2){
				
				carroussel_on_progress = true;
				
				if(nb > 1){
					while(nb-- > 1){
						$('#carroussel .thin .large .image:first').clone(true, true).insertAfter($('#carroussel .large .image:last'));
						$('#carroussel .thin .large .image:first').remove();
					}
					$('#carroussel .thin').animate({'scrollLeft': (0)}, 0);
					nb = 1;
				}
								
				$('#carroussel .thin').animate({'scrollLeft': (nb*180)}, 1000);
				
				
				$('#carroussel .image.active').removeClass('active', 1000).find('img').animate({'width': 160, 'height': 163}, 1000);
								
				$('#carroussel .nom').fadeOut(500, function(){
					$(this).html('<a href="http://'+nom+'" target="_blank">'+nom+'</a>').fadeIn(250);
				});
				
				
				var desc = '';
				if($(this).next('.desc').length > 0){
					var desc = $(this).next('.desc').html();
				}
				
				$('.carroussel_desc').fadeOut(500, function(){
					if(desc != ''){
						$(this).find('.center').html(desc);
						$(this).fadeIn(500);
					}
				});
				
				$(this).parent('.image').addClass('active', 1000);
				$(this).css('box-shadow', '0px 0px 5px #c53a4c').animate({'width': 178, 'height': 181}, 1000, function(){
					$(this).removeAttr('style');
					
					
					if(nb == 0){
						$('#carroussel .thin .large .image:last').clone(true, true).insertBefore($('#carroussel .large .image:first'));
						$('#carroussel .thin .large .image:last').remove();
						$('#carroussel .thin').animate({'scrollLeft': (180)}, 0);
					}
					
					carroussel_on_progress = false;
					
				});
			}else if(nb > 2){
				
				carroussel_on_progress = true;
				
				function loopCarroussel(nb){
					$('#carroussel .thin .large .image:first').clone(true, true).insertAfter($('#carroussel .large .image:last'));
					$('#carroussel .thin .large .image:first').remove();
					$('#carroussel .thin').animate({'scrollLeft': 0}, 0);
					$('#carroussel .thin').animate({'scrollLeft': 180}, (250), function(){
						nb--;
						if(nb > 1)
							loopCarroussel(nb);
						else{
							carroussel_on_progress = false;
							$('#carroussel .image:first').addClass('active').next('.image').find('img').click();
						}
					});
				}
				
				loopCarroussel(nb);
				
			}
		}
	});
	$('#carroussel .image:first img').click();
	
	$('#carroussel .fleche_left').click(function(){
		$('#carroussel .image.active').prev('.image').find('img').click();
	});
	$('#carroussel .fleche_right').click(function(){
		$('#carroussel .image.active').next('.image').find('img').click();
	});
	
	/* LIEN CONTACT */
	
	$('#home_contact').click(function(){
		document.location.href = $(this).find('a').attr('href');
	});
	
	/* MENU */
	$('#header .menu>ul>li').hover(
		function(){
			if($(this).find('ul').length > 0){
				if($(this).children('a').hasClass('active')){
					$(this).children('a').data('active', true);
				}else
					$(this).children('a').addClass('active');
				$(this).find('ul').css('display', 'none').show('fast');
			}
		},function(){
			if($(this).find('ul').length > 0){
				if(!$(this).children('a').data('active'))
					$(this).children('a').removeClass('active');
				$(this).find('ul').hide();
			}
		}
	);
	
	/* SOCIAL */
	var social_time = 0;
	$('#header .header .social .share, #header .header .social .share_popup').hover(
		function(){
			clearTimeout(social_time);
			
			$('#header .header .social .share .share_popup').css('display', 'block');
		},function(){
			clearTimeout(social_time);
			social_time = setTimeout(function(){
				$('#header .header .social .share .share_popup').hide();
			}, 2000);
		}
	);
});
