
		$(function() {
			$.simpleWeather({
				zipcode: '32119',
				unit: 'f',
				success: function(weather) {
					var d=new Date();
					var month=new Array(12);
					month[0]="January";
					month[1]="February";
					month[2]="March";
					month[3]="April";
					month[4]="May";
					month[5]="June";
					month[6]="July";
					month[7]="August";
					month[8]="September";
					month[9]="October";
					month[10]="November";
					month[11]="December";
					
					$("#weather").append('<img src="'+weather.image+'">');
					$("#weather").append('<p>'+weather.temp+'&deg; '+weather.units.temp+' '+weather.currently+'<br />'+month[d.getMonth()]+" "+d.getDate()+", "+d.getFullYear()+'</p>');
				},
				error: function(error) {
					$("#weather").html('<p>'+error+'</p>');
				}
			})
		});

