function setLanguageCookie(language) {
	var days = 90;
	var today = new Date();
	var defaultExpire = new Date();
	defaultExpire.setTime(today.getTime() + 1000*60*60*24*days);
	
	cLang = getCookie("CheltenhamLang");
	if ((cLang==null)||(cLang=='')) {
	cLang = 1;
	}
	setCookie("CheltenhamLang", language, defaultExpire, null, null, null);
}

// LANGUAGE JUMP BAR
function menuJump(langID, siteID) {
	var theLang = parseInt(langID);
	/*var days = 90;
	var today = new Date();
	var defaultExpire = new Date();
	defaultExpire.setTime(today.getTime() + 1000*60*60*24*days);
	
	setCookie("CheltenhamLang", theLang, defaultExpire, null, null, null);*/
	
	var tPORT = "";
	
	var tURL = location.protocol + "//" + location.hostname + tPORT + location.pathname + "?lang=" + langID;
	
	switch (siteID) { 
		case 11500:	// VcCasino
			switch (theLang) {
				case 21:
					tURL = "http://www.thespinroom.co.il/"; break;
				case 22:
					tURL = "http://www.vccasino.ie/"; break;
				case 26:
					tURL = "http://www.vccasino.com.ar/"; break;
				}	
			break;
		case 7600:	// Spinroom.co.il
		case 12600:	// VcCasino.ie
		case 88100:	// VcCasino.com.ar		
			switch (theLang) {
				case 1: tURL = "http://www.vccasino.com/casino/index.jsp?lang=1"; break;
			}
			break;
		case 100600:	// VcLiveCasino
			switch (theLang) {
				case 21:
					tURL = "http://www.vclivecasino.co.il/"; break;
				case 22:
					tURL = "http://www.vclivecasino.ie/"; break;
				}	
			break;
		case 100700:	// VcLiveCasino.co.il
		case 100800:	// VcLiveCasino.ie
			switch (theLang) {
				case 1:
					tURL = "http://www.vclivecasino.com/"; break;
				}	
			break;
	}
	
	location.href = tURL;	
}