$(function(){
	$('#mon-twitt').load('twitter.php');
	
	$('#badges img').css({'opacity':.6});
	
	// Animation des badges
	$('#badges img').hover(function(){
		$(this).stop().animate({'opacity':1});
	},
	function(){
			$(this).stop().animate({'opacity':.6});
	});
	
	$('.button').animate({'opacity':.6});
	
	// Animation des thumbnails
	$('.button').hover(function(){
		$(this).stop().animate({'opacity':1});
	},
	function(){
			$(this).stop().animate({'opacity':.6});
	});
})