// Go to
function gt(lnk) {
	return true;
}

// Send form
function sf(frm) {
	return true;
}

// History Change listener
function hc(newLocation, historyData) {
	if (newLocation.substring(0,1)!='/')
		return false;
	if (!$('content'))
		return true;
	var myAjax = new Ajax.Updater (
		'content',
		newLocation,
		{
			method: 'get',
			evalScripts: true,
			parameters: 'ajaxrender=y&fromhistory=y'
		}
	);
}


