 $(function(){

	  $('#paintingInfo p').each(function(){ 
			var element = $('#' + this.id);
			if (!element.hasClass('active')) {
				element.hide();
			}
	  });
	  
	   $('#paintingInfo img').each(function(){ 
		  this. onmouseover = function(event){
			  if (!event) event = window.event;
			  var target = (event.target) ? event.target : event.srcElement;
			  showById(target, '#paintingInfo p');
		  }
	   });
	  });
	 

	function showById(toShow, searchElements) {
		
		var toShowTarget = $('#' + toShow.id + 'Info');
		
		   $(searchElements).each(function(){
			  
				 if (this.id != toShowTarget.attr('id')){
					 var element = $('#'+ this.id);
					 //if (!element.is(':hidden')) {
					 element.hide();
					   element.animate({opacity:'hide'});
					 //}
				 }
			  });

		   toShowTarget.animate({opacity:'show'}, 'slow');
	 }