// JavaScript Document

setTimeout(function(){
 jQuery.jsonp({
  type: 'get',
  //url: 'http://ws.geonames.org/findNearByWeatherJSON?lat=38.403813&lng=-122.358506',
  url: 'http://ws.geonames.org/findNearByWeatherJSON?lat=7.73685&lng=98.76881',
  //30.598801,119.871955
  dataType: 'jsonp',
  callbackParameter: "callback",
  error: function(xhr, status, error) {
   jQuery('#weather').hide();
  },
  success: function(data) {
	  
	// Farenhite
   /*jQuery('#weather span').html( (data.weatherObservation.clouds == 'n/a' ? 'clear' : data.weatherObservation.clouds) + ' and ' + Math.round( (1.8 * parseFloat(data.weatherObservation.temperature)) + 32) + '&#176;F');*/
   
   jQuery('#weather span').html( (data.weatherObservation.clouds == 'n/a' ? 'clear' : data.weatherObservation.clouds) + ' and ' + Math.round( (parseFloat(data.weatherObservation.temperature))) + '&#176;C');
  }
 });
}, 1000);
