$(document).ready(function() {

/* ----------------------- */
/* text défilant (widget)  */
/* ----------------------- */
	
	// deplace le widget au dessus du contenu
	$(".txt_defilant").prependTo($("#contents"))
	
	// preparation au plugin
	$(".txt_defilant ul").wrap("<div id='infouminoute'></div>")
	$("#infouminoute").prepend("<h3><span>Info minute</span></h3>")
	
	// limitation du nombre de caracteres
	$(".txt_defilant li").each(function(){
		if ($(this).text().length > 150){
			var brevetxtmaxi = $(this).text().substring(0,150),
			brevetxtcoupe = brevetxtmaxi.substring(0,brevetxtmaxi.lastIndexOf(" ")) + "...";
			$(this).text(brevetxtcoupe) 
		}
	});
	
	// activation jquery plugin
	$(function() {
		$("#infouminoute").jCarouselLite({
			vertical: true,
			auto: 4200,
			speed: 1000,
			visible: 1

		});
	});

	
});
