$(document).ready(function(){
	$('.choose-region').click(function (e) {
    	var a = $(this);
		if (a.attr('rel') != '') {
      		$.cookie('region', a.attr('rel'), {path: '/'});
    	}
	});

	if (window.location.search.indexOf('chooseregion=true') == -1) {
		if ($.cookie('region') != null && $.cookie('region') != '') {
	    	var a = $('a.choose-region[rel="' + $.cookie('region') + '"]');
	    	if (a.length > 0 && a.attr('href') != '') {
				window.location = a.attr('href');
			}
	    }
	}
});
