$(document).ready(function(){
	$("input#address").focus(function(){
		// clear text in the address input field (only if the text has not changed)
		if (this.value == this.defaultValue) {
			this.value = '';
		}
	});
		
	$("a.disabled[title]").tooltip({
		tip: "#tooltip",
		effect: "fade"
	});
		
	$("form#addressSearch").submit(function(){
		var address = 'http://www.redistrictingthenation.com/search.aspx?address=' + encodeURIComponent($("input#address").val());
		$("form#addressSearch").attr("action",address);
		$("form#addressSearch").submit();
		return false;
	});
});
