// JavaScript Document
		$(function() {
			
			
			$.simpleWeather({
				zipcode: '90036',
				//location: 'LA',
				unit: 'f',
				success: function(weather) {
					$("#la-weather").append('<img  mce_style="" src="'+weather.image+'" mce_src="http://origin-www.lamag.com/'+weather.image+'">');
					$("#la-weather").append('<p>'+weather.temp+'&deg; '+weather.units.temp+'</p>');
					///$("#la-weather").append('<p>'+weather.temp+'&deg; '+weather.units.temp+'<br /><span>'+weather.currently+'</span></p>');
					
				},
				error: function(error) {
					$("#la-weather").html('<p>'+error+'</p>');
				}
			});
		});

