$(function(){
	$("ul#thumbs_tuto img").hover(
		function(){
			$(this).fadeTo(100, 0.7);
		},
		function(){
			$(this).fadeTo(200, 1.0);
		}
	);

	$("ul#thumbs_recog img").hover(
		function(){
			$(this).fadeTo(100, 0.7);
		},
		function(){
			$(this).fadeTo(200, 1.0);
		}
	);

	$("ul#thumbs_ctrl img").hover(
		function(){
			$(this).fadeTo(100, 0.7);
		},
		function(){
			$(this).fadeTo(200, 1.0);
		}
	);
});

