jQuery(function(){
	jQuery('.photogalleryItem a').each(function() {
		var title = (jQuery(this).attr('title'));
		jQuery(this).append('<div class="description">'+title+'</div>');
	})
});
