$(document).ready(function() {
	$(".hidden").hide();
	$("#gallery li a").mouseover(function() {
		$(".hidden", this).stop(true, true).show();
	});
	$("#gallery li a").mouseout(function() {
		$(".hidden", this).fadeOut(3500);
	});
});