function toggleLanguage()
{
	var path = window.location.href;
	path = path.substr(path.indexOf('/',8));
	
	if(window.location.href.indexOf('http://www.bmobanquepriveeharris.com') == 0) {
		path = 'http://www.bmoharrisprivatebanking.com' + path;
	}
	else {
		path = 'http://www.bmobanquepriveeharris.com' + path;
	}

	window.location.href = path;
}