
	$(function() {
		
		$("div.weatherText").hide();
	
		$.get("/home/weather-xml/", {}, function(xml) {
			var condition = $(xml).find("rss channel [nodeName=yweather:condition]");
			var message = condition.attr("temp")+"F, "+condition.attr("text");
			$("div.weatherText").append(message).fadeIn('slow');
		}, "xml");
	
	});