$(document).ready( function() {

	// On cale le footer
		var oDoc			=	document.documentElement;
		var oWin			=	document.body;
		var oWho			=	oDoc.offsetHeight? oDoc: oWin ;
		var dHeightBody		=	Math.max( oWho.scrollHeight, oWho.offsetHeight );
		var dHeightWindow	=	$(window).height();
		var dHeightTotal	=	Math.max( dHeightBody, dHeightWindow );
		if ( $(".footer_stevia").hasClass( "footer_stevia" ) ) {
			$(".footer_stevia").css({
				"height":			( dHeightTotal - ( $(".footer_stevia").position().top + parseInt( $(".footer_stevia").css( "margin-top" ) ) ) ) + "px"
			});
		}
	//---

	var dWidthImg			=			1300;

	// On place les anim stevia
		$("#animSteviaLeft img").css( "margin-left", parseInt( $("#animSteviaLeft").width() - dWidthImg )+"px" );
		$("#animSteviaRight img").css( "margin-left", 0 );
	//---

	setTimeout( function() {
		$("#animSteviaLeft img").animate({ marginLeft: "-"+dWidthImg+"px" }, 2000, function() {
			$("#animSteviaLeft").css("display","none");
		});
		$("#animSteviaRight img").animate({ marginLeft: dWidthImg }, 2000, function() {
			$("#animSteviaRight").css("display","none");
		});
	},1000);

});
