// This initializes the inplace editor.
Event.observe(window, 'load', init_fighter_list);
Event.observe(window, 'load', init_near_gyms);


function init_fighter_list()
{
	response = new Ajax.Updater('fighter_list', '/load.php', { evalJSON: true, sanitizeJSON: true, parameters: { method: 'load_fighter_list'}});
	
}  // end init_profile.

function init_near_gyms()
{
	response = new Ajax.Updater('near_gyms', '/load.php', { evalJSON: true, sanitizeJSON: true, parameters: { method: 'load_near_gyms'}});
}  // end init_trainer_list.