$(document).ready(function(){
	$('.leaf').hover( function() {
		$(this).find('.fade').fadeIn('fast');
	}, function() {
		$(this).find('.fade').fadeOut('slow');
	});
});
