j(document).ready(function() {

	j('.DiscussionTopic a i').each(function() {
		var id = j(this).text().split(':');
		if (id.length == 2) {
			var mode = null;
			if (id[0] == 'l') {
				mode = 'location';
			}
			else {
				mode = 'photo';
			}
			var url = '/c/de/forum/'+mode+'_list_preview/'+id[1];
			
			var that = this;
			j.get(url, function(r) {
				j(that).parent().get(0).innerHTML += r;
			});
		}

	});
	
	
	j('#cronica_photo_id').each(function() {
		
		j('.CommentHeader:first').hide();
		
		var id = j(this).text();
		var url = '/c/de/forum/photo_entry/'+id;
		var that = this;
		j.get(url, function(r) {
			j(that).show().get(0).innerHTML = r;
		});
		
		
	});
	
	j('#cronica_location_id').each(function() {

		j('.CommentHeader:first').hide();

		var id = j(this).text();
		var url = '/c/de/forum/location_entry/'+id;
		var that = this;
		j.get(url, function(r) {
			j(that).show().get(0).innerHTML = r;
		});
		
	});
		
});
