$(document).ready(function (){
	$("#regionlist li a").click(function() {
		if($("#remember-input")[0].checked) {
			//this cookie expires in 1 year
			$.cookie('preferred_url', this.href, {expires: 365});
		}
		return true;
	});
	
	$(".whynew h3 a").click(function() {
		if($("#whynew-floater").css('display') == 'block') {
			$("#whynew-floater").fadeOut();
		} else {
			$("#whynew-floater").fadeIn();
		}
		return false;
	});
});


