$(document).ready(function(){
	prepareFaders();
});

function prepareFaders(){
	$(".fader").each(function(){
		$(this).mouseenter(function(){
			$(this).find(".fadein:first").fadeIn();
		});
		$(this).mouseleave(function(){
			$(this).find(".fadein:first").fadeOut();
		});
	});
}
