$(document).ready(function(){  
	$("#featured").tabs({fx:{opacity: "toggle"}}).tabs("rotate", 9000, true);  
	$("#featured").hover(  
		function() {  
			$("#featured").tabs("rotate",0,true);  
		},  
		function() {  
			$("#featured").tabs("rotate",9000,true);  
		}  
	); 
	$(function() {
		$(".anyClass").jCarouselLite({
			btnNext: ".next",
			btnPrev: ".prev",
			circular: true,
			auto: 1000,
			speed: 1000
		});
	});	
	$("#agr").click(function(){
		$(".formulaire_bas").animate({ 
			bottom: 22,
			paddingTop: 15,
			paddingBttom: 35,
			height: 100
		}, 500 );
	});
	$("#red").click(function(){
		$(".formulaire_bas").animate({ 
			bottom: 0,
			paddingTop: 0,
			paddingBttom: 0,
			height: 1
		}, 500 );
	});
});

