$(function(){
	$.simpleWeather({	
				location: "Pecs, Hungary",
	
				unit: "c",
				success: function(weather) {
					//$("#weatherDiv").append("<h1>Időjárás</h1>");
					$("#weatherDiv").append("<img src='"+weather.image+"' alt=\"\" / id=\"kep\">");
					$("#weatherDiv").append("<p id=\"aktualis\">"+weather.temp+"&deg; "+weather.units.temp+"</p>");
					$("#weatherDiv").append("<p class=\"minmax\"><strong>Pécs</strong>");
					$("#weatherDiv").append("<p class=\"minmax\"><strong>max</strong>: "+weather.high+"&deg; "+weather.units.temp+"</p><p class=\"minmax\"><strong>min</strong>: "+weather.low+"&deg; "+weather.units.temp+"</p>");
					
					//$("#weatherDiv").append("<p class=\"minmax\"><strong>max</strong>:"+weather.city+", "+weather.region+" "+weather.country+"</h1>");
					//$("#weatherDiv").append("<p><strong>Wind</strong>: "+weather.wind.direction+" "+weather.wind.speed+" "+weather.units.speed+"</p>");
					//$("#weatherDiv").append("<p><strong>Currently</strong>: "+weather.currently+" - <strong>Forecast</strong>: "+weather.forecast+"</p>");
					//$("#weatherDiv").append("<p><strong>Sunrise</strong>: "+weather.sunrise+" - <strong>Sunset</strong>: "+weather.sunset+"</p>");
					//$("#weatherDiv").append("<p><strong>Last updated</strong>: "+weather.updated+"</p>");
				},
				error: function(error) {
					$("#weatherDiv").html("<p>"+error+"</p>");
				}
			});
});0
