/**
 * @author LiMBC HV2010
 */

		$(function() {
			$.simpleWeather({
				location: 'Langkawi, MY',
				unit: 'c',
				success: function(weather) {
					// weather thumbnail //
					$("#weather").append('<div class="wImg"><img src="'+weather.thumbnail+'"></div>');
					// weather location //
					// == Original Code == //
					//$("#weather").append('<div class="wTitle">'+weather.city+', '+weather.region+' '+weather.country+'</div>'); 
					$("#weather").append('<div class="wTitle">Langkawi, Malaysia</div>');
					// temp + condition //
					$("#weather").append('<div class="wTemp">'+weather.temp+'&deg; '+weather.units.temp+' | '+weather.currently+'</div>');
				},
				error: function(error) {
					$("#weather").html('<p>'+error+'</p>');
				}
			});
		});
