$(document).ready(function() {
	$(".communityLink").click(function() {
		var a = $(this).attr("href");
		if(!/^http:.*$/.test(a)) {
			a = "/ajax/community/communitylocationinfo/name/" + a + "/";
			var d = $(this).text(), c = "";
			$.ajax({async:false, dataType:"json", url:a, success:function(b) {
				b = new Envelope(b);
				if(b.payload) {
					b = b.payload;
					if(b.length > 0) {
						d = b[0].city;
						c = b[0].state
					}
				}
			}});
			a = "http://en.wikipedia.org/wiki/" + d + (c != "" ? "%2C_" + c : "")
		}openWin(a, 800, 600, "yes")
	});
	$(".schoolmattersLink").click(function() {
		var a = $(this).attr("zipcode");
		a = "http://www.schoolmatters.com/schools.aspx/q/page=sr/mr=5/zc=" + a + "/p=1/fp=1";
		openWin(a, 800, 600, "yes")
	})
});
