var section;

function encodeSectionVariable(section) {
	return section.replace(/ > /g,'/').replace(/ /g,'-').replace(/&/g,'and').replace(/buy-ins-and-buy-outs/g,'buyinsandbuyouts');
}

function sectionVariableToURL(section) {
	var encodedSectionVariable=encodeSectionVariable(section.toLowerCase());
	var url='/'+escape(encodedSectionVariable)+'/';
	return url;
}
