function navToLanguage(myLanguage) {
	switch(myLanguage)
	{
	case "Spanish":
		if (document.location.href.indexOf("/en/") > 0) document.location.href=document.location.href.replace('/en/','/es/');
		if (document.location.href.indexOf("/ro/") > 0) document.location.href=document.location.href.replace('/ro/','/es/');
	break;
	case "Romanian":
		if (document.location.href.indexOf("/en/") > 0) document.location.href=document.location.href.replace('/en/','/ro/');
		if (document.location.href.indexOf("/es/") > 0) document.location.href=document.location.href.replace('/es/','/ro/');
	break;
	case "English":
		if (document.location.href.indexOf("/es/") > 0) document.location.href=document.location.href.replace('/es/','/en/');
		if (document.location.href.indexOf("/ro/") > 0) document.location.href=document.location.href.replace('/ro/','/en/');
	break;
	}
}
