var root_path = '/';

function edit(page)
{

	if(page=="profile")
	{
		new Ajax.Updater('profileSection', root_path+'editProfile.php', {onLoading:addLoadEvent(loader('profileSection','Loading Edit Form')),asynchronous:true, evalScripts: true});
		document.getElementById('profileSection').style.display = 'none';
		Effect.SlideDown('profileSection');

	}
	
	if(page=="ride")
	{
		new Ajax.Updater('rideInfo', root_path+'editRide.php', {onLoading:addLoadEvent(loader('rideInfo','Loading Edit Form')),asynchronous:true, evalScripts: true});
		document.getElementById('rideInfo').style.display = 'none';
		Effect.SlideDown('rideInfo');

	}
}


