// ----------------------------------------------------- 
// tabs
// -----------------------------------------------------
$(document).ready(function() {
    $(".tabs").tabs();
});


// ----------------------------------------------------- 
// weather
// -----------------------------------------------------
$(document).ready(function() {
$(".more-temperature").hover(function() {
    var box = $(this).find(".detail-box");
    if (box.is(":animated")) {
        box.stop().fadeTo("fast", 1);
    }
    else {
        box.stop().fadeIn("slow");
    }

    },
    function() {
        $(".more-temperature .detail-box").fadeOut("slow");
    });
});