var initPopupSlider;

$(function(){
	//delai entre chaque diapo
	var acc_delai = 6000;
	//temps de transition entre chaque diapo
	var acc_tpsanim = 600;

	//delai entre chaque widget
	var wid_delai = 8000;
	//temps de transition entre chaque widget
	var wid_tpsanim = 1000;

	initPopupSlider = function() {
		if($('#popup_paragraphes').length>0) {
			$('#popup_paragraphes').sudoSlider({
				prevNext: true,
				continuous: false,
				auto:false,
				vertical:false,
				speed:600,
				prevId:'paragraphe_suiv',
				nextId:'paragraphe_prec'
			});

			return true;
		}

		return false;
	};

	if (!initPopupSlider()) {
		$('#diaporama_contenu').sudoSlider({
			prevNext: true,
			continuous: true,
			auto:true,
			vertical:true,
			speed:acc_tpsanim,
			pause:acc_delai,
			prevId:'diapo_suiv',
			nextId:'diapo_prec'
		});
	}

	////////////////////////////////////////////////
	//////////////// WIDGETS ANIMES ////////////////
	////////////////////////////////////////////////
	var pause2 = true;
	var widget_courant = $('.widget1:first');
	var intervalID2 = null;

	function widget_anime(){
		if(widget_courant.next().length==0)
			$('.widget1:first').fadeIn(wid_tpsanim, function(){
				$('.widget1').show();
				widget_courant = $('.widget1:first');
			});
		else{
			widget_courant.fadeOut(wid_tpsanim, function(){
				widget_courant = widget_courant.next();
			});
		}
	}

	var pauseAnimation = function(){
		if(!pause2){
			clearInterval(intervalID2);
			pause2 = true;
		}
	}

	var lanceAnimation = function(){
		if(pause2){
			intervalID2 = setInterval(widget_anime, wid_delai);
			pause2 = false;
		}
	}
	
	if(widget_courant.length>0 && $('.widget1').length>1){
		lanceAnimation();
		$('#widget1').bind("mouseover", pauseAnimation);
		$('#widget1').bind("mouseout", lanceAnimation);
	}
});
