$(function () {
            $.simpleWeather({
                location: 'mahring, germany',
                unit: 'c',
                success: function (weather) {
                    html = '<h2>Mariánské Lázně, Česká Republika</h2>';
                    html += '<p><img src="' + weather.image + '"></p>';
                    html += '<p><strong>Nejvyšší denní teplota</strong>: ' + weather.high + '&deg; ' + weather.units.temp + '<br /><strong>Nejnižší denní teplota</strong>: ' + weather.low + '&deg; ' + weather.units.temp + '<br />';
                    html += '<strong>Aktuální teplota</strong>: ' + weather.temp + '&deg; ' + weather.units.temp + '<br />';
                    html += '<strong>Pocitově</strong>: ' + weather.heatindex + '&deg; ' + weather.units.temp + '</p>';
                    html += '<br />';

                    html += '<p><strong>Vítr</strong>: ' + weather.wind.direction + ' ' + weather.wind.speed + ' ' + weather.units.speed + '<br /><strong>Wind Chill (efektivní teplota)</strong>: ' + weather.wind.chill + '&deg; ' + weather.units.temp + '</p>';
                    html += '<br />';

                    //html += '<p><strong>Aktuální stav</strong>: ' + weather.currently + '<br /><strong>Předpověď</strong>: ' + weather.forecast + '</p>';
                    //html += '<br />';

                    html += '<p><strong>Vlhkost</strong>: ' + weather.humidity + ' %<br /><strong>Tlak</strong>: ' + weather.pressure + ' mb<br /><strong>Růst</strong>: ' + weather.rising + '<br /><strong>Viditelnost</strong>: ' + weather.visibility + ' km</p>';
                    html += '<br />';
                    
                    html += '<p><strong>Východ slunce</strong>: ' + weather.sunrise + '<br /><strong>Západ slunce</strong>: ' + weather.sunset + '</p>';
                    html += '<br />';

                    html += '<h2>Výhled na přístí den</h2>';
                    //html += '<p><strong>Zítra</strong>: ' + weather.tomorrow.day + ' ' + weather.tomorrow.date + '</p>';
                    html += '<p><strong>Zítřejší nejvyšší/nejnišší teplota</strong>: ' + weather.tomorrow.high + '&deg; ' + weather.units.temp + ' / ' + weather.tomorrow.low + '&deg; ' + weather.units.temp + '<br />' + '<img src="' + weather.tomorrow.image + '" /></p>';
                    html += '<p><strong>Poslední aktualizace</strong>: ' + weather.updated + '</p>';

                    html += '<p><strong>Zdroje dat:</strong></p>';
                    html += '<p><a href="http://www.weather.com/"><img src="obrazky/twclogo.png" /></a></p>';
                    html += '<p><a href="' + weather.link + '">View forecast at Yahoo! Weather</a></p>';

                    $("#pocasi-podrobne").html(html);
                },
                error: function (error) {
                    $("#pocasi-podrobne").html('<p>' + error + '</p>');
                }
            });

            $.simpleWeather({
                location: 'mahring, germany',
                unit: 'c',
                success: function (weather) {
                    html = '<p><img style="width: 150px;" src="' + weather.image + '"></p>';
                    html += '<p style="margin-top: -20px;">Teplota: ' + weather.temp + '&deg; ' + weather.units.temp + '</p>';

                    $("#pocasi-nahled").html(html);
                },
                error: function (error) {
                    $("#pocasi-nahled").html('<p>' + error + '</p>');
                }
            });
        });
