$(function() {
	$.ajax({
        url: "./weather.php",
        async: true,
        cache: false,
        dataType:"xml",
        error: function(){
//            alert("xmlファイルの読み込みに失敗しました");
        },
        success: function(xml){
            //heading
            $("div.wether img").attr("src", $("image:not(copyright > image)", xml).find("url").text());
            
            var nowdate = new Date();
            $("div.mimg img").attr("src", "./img/calender_month_" + String(nowdate.getMonth() + 1) + ".gif");
            $("div.dimg img").attr("src", "./img/calender_day_" + String(nowdate.getDate()) + ".gif");
            
            var mon = 'JAN,FEB,MAR,APR,MAY,JUN,JUL,AUG,SEP,OCT,NOV,DEC';
            $("div.mothtxt p").html(mon.split(',')[nowdate.getMonth()]);
        }
    });
});
