var validCountries = new Array('default','usa','uk','ca');
function countryChangeGo(){
	var country = $('countryChange').value;
	var remember = $('rememberCountry').checked;
	if(false === validCountries.contains(country)) return;
	//read cookie
	//var countryCookie = Cookie.read('country_prefer');
	//console.log('cookie_val:'+countryCookie);
	if(remember){
		 Cookie.write('country_prefer', country, {domain:'imaginationlibrary.com',path : '/', duration: '365'});
	}
	else{
		 Cookie.write('country_prefer', '', {domain:'imaginationlibrary.com',path : '/', duration: '-365'});
	}
	var url = 'imaginationlibrary.com';

	location.href= (document.location.protocol == 'https:') ? 'https://'+country+'.'+url: 'http://'+country+'.'+url;
	
	return;
}
function showCountrySelector(){
	$('countrySelected').setStyle('display','none');
	$('countrySel').setStyle('display','block');
	return false;
}
