function replaceImages(label)	{
	$(".content img").each(function() {
	       var t = $(this);
	       var filename = t.attr("src").replace("/allomany/", "");
	       $.ajax({
				type: "GET",
		 		url: "/allomany-adatok/"+filename,
		 		success: function(title){
			 		if(title.length > 0)	{
			 			/*var old = t.attr('title');
	 					if(old.length > 0)	{
	 						var new_title = old + ' ('+label+' '+title+')';
	 					}
	 					else	{
	 						var new_title = label+' ' +title;
	 					}*/
	 					t.attr('title', title);
	 					var style = 'width:'+$(t).css('width')+';margin:'+$(t).css('margin')+';float:'+$(t).css('float');
	 					//t.parent().html('<div class="image_container" style="'+style+'"><img src="'+$(t).attr("src")+'" alt="'+$(t).attr("alt")+'" title="'+$(t).attr("title")+'" width="'+$(t).css("width")+'"/><p style="width:'+$(t).css('width')+'">'+new_title+'</p></div>');
				 		t.before('<div class="image_container" style="'+style+'"><img src="'+$(t).attr("src")+'" alt="'+$(t).attr("alt")+'" title="'+$(t).attr("title")+'" width="'+$(t).css("width")+'"/><p style="width:'+$(t).css('width')+'">'+title+'</p></div>').remove();
			 		}
		 		}
	       });
	});
}