
	if($.cookie("user_region")) {
		// do nothing
	} else {
		var current_location = document.location.href;
		if(document.location.href != reiss_base_url) {
			$.cookie("redirect_url", document.location.href, {path: '/'})
			window.location.href = reiss_base_url;
		}
	}
