$(document).ready(function() {
    $("#weatherPodBtn").click(function () {
      if ($("#weatherPodDropdown").is(":hidden")) {
        $("#weatherPodDropdown").slideDown("normal");
        //$("#bgPod").css("background-image", "url(/images/weatherpod_images/pod_bg_bottombg_down.png)");
        $("#weatherPodBtn").css("background-image", "url(/images/weatherpod_images/more_btn_down.gif)");
      } else {
        $("#weatherPodDropdown").slideUp("normal");
        $("#weatherPodBtn").css("background-image", "url(/images/weatherpod_images/more_btn.gif)");
        //$("#bgPod").css("background-image", "url(/images/weatherpod_images/pod_bg_bottombg.png)");
      }
    });
    $(".podForcastBtn").bind("mouseover", function () {
        $(this).css("background-image", "url(/images/weatherpod_images/pod_forcast_btn_over.gif)");
    });
    $(".podForcastBtn").bind("mouseout", function () {
        $(this).css("background-image", "url(/images/weatherpod_images/pod_forcast_btn.gif)");
    });
});
