function showWeather() {
	var feed = new google.feeds.Feed("http://weather.yahooapis.com/forecastrss?p=45224");
	feed.load(function(result) {
		if (!result.error) {
			var container = $("#px-weather");
			var entry = result.feed.entries[0];
			container.html("<h2>Weather</h2>" + entry.content);
		}
	});
}
if (window.google) {
	google.load("feeds", "1");
	google.setOnLoadCallback(showWeather);
}

$(document).ready(function () {
});

