(function ($) {
	$(function() {
		var mOver = function() {
			var obj = $(this);
			obj.unbind('mouseover', mOver);
			$(this).next('div.hovered').fadeIn(500, function() {
				obj.bind('mouseover', mOver);
			});
		};
		var mOut = function() {
			var obj = $(this);
			obj.unbind('mouseover', mOver);
			$(this).next('div.hovered').fadeOut(500, function() {
				obj.bind('mouseover', mOver);
			});
		};
		$('ul.list li a.image').bind('mouseover', mOver);
		$('ul.list li a.image').bind('mouseout', mOut);
	});
})(jQuery);
