function toggleLanguage(){
	var path = window.location.pathname;
	if(path.indexOf('francais/') == 1){
		window.location.pathname = window.location.pathname.substr(9);
	}
	else{
		window.location.pathname = 'francais' + window.location.pathname;
	}
}