/*
function changeLanguage(language) {
	var clearpathname = window.location.pathname;
	if ((window.location.pathname.indexOf("/rus") == 0) || (window.location.pathname.indexOf("/eng") == 0)) {
		clearpathname = window.location.pathname.substr(4);
	}
	
	switch (language) {
	case "rus":
		window.location.pathname = "/rus" + clearpathname + window.location.search;
		break;
	case "eng":
		window.location.pathname = "/eng" + clearpathname + window.location.search;
		break;
	case "ukr":
		window.location.pathname = clearpathname + window.location.search;
		break;
	}
}
*/
function changeLanguage(language) {
	var clearhostname = window.location.hostname;
	if ((window.location.hostname.indexOf("www.") == 0) || (window.location.hostname.indexOf("rus.") == 0) ||
	(window.location.hostname.indexOf("eng.") == 0)) {
		clearhostname = window.location.hostname.substr(4);
	}
	
	switch (language) {
	case "rus":
		window.location.href = "http://rus." + clearhostname + window.location.pathname + window.location.search;
		break;
	case "eng":
		window.location.href = "http://eng." + clearhostname + window.location.pathname + window.location.search;
		break;
	case "ukr":
		window.location.href = "http://" + clearhostname + window.location.pathname + window.location.search;
		break;
	}
}