$().ready(function(){

	$('div.ajax_content').each(function(){
		
		var content_obj = this;
		$.get('/ajax/' + this.id.replace(/--/ig, '/'), function(result){
			
			content_obj.innerHTML = result;
			
		});
	});
	
});
