window.addEvent('domready', function() {

	var req = new Request.HTML({
		onSuccess: function(html) {
			$('buildable_description').set('text', '');
			$('buildable_description').adopt(html);
		},

		onFailure: function() {
			$('buildable_description').set('text', '');
            alert('Ajax requests don\'t seem to be supported on your browser.'+
                  '\nPlease advise the administrators.');
		}
	});

	$$('.ajax-link').addEvent('click', function() {
      req.send({url:$(this).name, method:'get', evalResponse:true, evalScripts:true});
	});
});
