
		$(function() {
						
			$.simpleWeather({
				zipcode: '75080',
				unit: 'f',
				success: function(weather) {
					html = +weather.temp+'&deg; '+weather.units.temp+' <span>'+weather.currently+'</span>';
					html += '';
					
					$("#weather2").html(html);
				},
				error: function(error) {
					$("#weather2").html('<p>'+error+'</p>');
				}
			});
		});
	
