$(document).ready(function() {

	//On mouse over those thumbnail
	$('.left-container').hover(function() {
			
		//Display the caption
		$(this).find('div.caption').stop(false,true).fadeIn(100);
		
	},
	
	function() {
	
		//Hide the caption
		$(this).find('div.caption').stop(false,true).fadeOut(100);
		
	});

});
