jQuery.noConflict();
jQuery(document).ready(function(){									
	var thumbs = jQuery("#elPf img");		
	
	for (var i = 0, ii = thumbs.length; i < ii; i++){
		if (thumbs[i].title && thumbs[i].title.length > 0)
		{			
			var imgtitle = thumbs[i].title;		
			jQuery(thumbs[i]).wrap('<div class="hovWrapper" />').				
			after('<div class=\'hovCaption\'>' + imgtitle + '</div>').
			removeAttr('title');
										
		}					
	}
				
jQuery('.hovWrapper').hover(
	function(){
		jQuery(this).find('img').animate({opacity: ".3"}, 300);		
		jQuery(this).find('.hovCaption').animate({top:"-50px"}, 300);			
	}, 
	function(){
		jQuery(this).find('img').animate({opacity: "1.0"}, 300);					
		jQuery(this).find('.hovCaption').animate({top:"50px"}, 100);
	}		
	);			
});
