$(document).ready(function(){
	//To switch directions up/down and left/right just place a "-" in front of the top/left attribute
	$('.folio-block').hover(function(){
		$(".caption", this).fadeIn('fast');
	}, function() {
		$(".caption").fadeOut('fast');
	});
});