// JavaScript Document
$(document).ready(function()
{		
		$(".flechin").hover
		(
			function ()
			{
				$("a.bot", this).stop().animate({backgroundColor: "#666666", color: "#FFFFFF"},{queue:false,duration:200});
				$(this)
				.stop()
				.delay(200)
				.animate({paddingBottom: "5px"},{queue:false,duration:200});		
			},
			function ()
			{
				$("a.bot", this).stop().delay(350).animate({backgroundColor: "#F3F3F3", color: "#333333"},{queue:false,duration:440});
				$(this)
				.stop()
				.animate({paddingBottom: "0px"},{queue:false,duration:350});
			}
		);

});

