$(document).ready(function(){
	$(".paintingcaption").fadeOut(0); 
	$(".paintingcontainer").mouseover(function(){
		$(this).children(".paintingcaption").not(":animated").fadeIn();
	});			
	$(".paintingcontainer").mouseout(function(){
		$(this).children(".paintingcaption").not(":animated").fadeOut();
	});
});
