function toggleLanguage(){
	var path = window.location.pathname;
	// supportingyourcommunity broken up into multiple strings to avoid being translated
	if( path.indexOf("francais/") == 25 ){  // 25 = length('supportingyourcommunity/') + 1
		path = "supporting" + "yourcommunity/" + path.substr(34);
	}
	else{
		path = "supporting" + "yourcommunity/francais/" + path.substr(25);
	}
	window.location.pathname = path;
}
