// JavaScript Document
function switchLanguage ( langCode ) {
	var currentURL = location.href;
	var newURL;
	var splitURL = new Array();
	
	splitURL = currentURL.split( '/' );

	newURL = splitURL[0];
	for ( i =1; i < (splitURL.length - 2); i++ ) {
		newURL = newURL + '/' + splitURL[i];
	}
	newURL = newURL + '/' + langCode + '/' + splitURL[splitURL.length - 1];
	
	location.href = newURL;
}
