$(document).ready(function() {
	$('.zitem').hover(function() {
		//Display the caption
		$(this).find('div.caption').stop(false,true).fadeIn(200);
	},
	function() {	
		//Hide the caption
		$(this).find('div.caption').stop(false,true).fadeOut(200);
	});
});
