function switchlang()
{
	var currentpage = document.location.href.toLowerCase();
	if (/\/fr\//.test(currentpage))	newlocation = currentpage.replace(/\/fr\//,'/en/');
	else 							newlocation = currentpage.replace(/\/en\//,'/fr/');
	document.location = newlocation;
}

