// Merci à Boyer Jonathan pour le script : http://www.grafikart.fr/

// script permettant un fondu sur les liens vers les "sections mangas" de la sidebar.
$(document).ready(function(){
	$(".others_mangas a img").css("opacity",0.5);
	
	$(".others_mangas a").mouseover(function(){$(this).find("img").stop().fadeTo(500,1);});
	$(".others_mangas a").mouseout(function(){$(this).find("img").stop().fadeTo(500,0.5);});
});
