function bakeCookie(choice,store){
	var cookiec = 'ROW';
	if (document.ccform.country[0].checked){
		cookiec = 'USA';
	}
	if (document.ccform.remember.checked) {
		$.cookie('KreepsvilleCountry', cookiec, { expires: 365 });
		if(cookiec == 'USA'){
			window.location = "http://www.kreepsville666.com/us/"
		}else{
			window.location = "http://www.kreepsville666.com/uk/"
		}
	}else{
		$.cookie('KreepsvilleCountry', null);
		if(cookiec == 'USA'){
			window.location = "http://www.kreepsville666.com/us/"
		}else{
			window.location = "http://www.kreepsville666.com/uk/"
		}

	}
}
function tasteCookie(){
	var morsel = $.cookie('KreepsvilleCountry');
	if( morsel != null) {
		if(morsel == "ROW"){
			window.location = "http://www.kreepsville666.com/uk/"
		}else{
			window.location = "http://www.kreepsville666.com/us/"
		}
	}else{
		$('#dialog').jqmShow();
	}
}
