		$(function() {
			$.simpleWeather({
				zipcode: '89119',
				unit: 'f',
				success: function(weather) {
					html = '<h3 style="float:left;">'+weather.city+', '+weather.region+'</h3>';
					html += '<p style="float:left;"><span>Weather:</span></p>';
					html += '<p style="float:left;">'+weather.temp+'&deg; '+weather.units.temp+'<span>'+weather.currently+'</span></p>';
					html += '<img style="float:left;" width="30px" src="'+weather.image+'">';
					html += '<a href="http://www.weather.com/weather/today/Las+Vegas+NV+USNV0049" target="_blank">View Forecast &raquo;</a>';
					$("#weather2").html(html);
				},
				error: function(error) {
					$("#weather2").html('<p>'+error+'</p>');
				}
			});
		});
