﻿                //
                // 季節を春・夏・秋・冬によってLogoを変化させる
                // 
                // Copyright Y.Amano 2009.06.06 Ver. 1.0
                //
                //



               today=new Date();
                    month=today.getMonth()+1;
                  //month=4;                                                                                                // For Debug
                  //month=prompt("Month?",1);                                                             // For Debug 

                    //document.write("今月は",month,"月<BR>");                              // For Debug

//---------------------------------　各月を季節に定義  -------------------------------------------------------------------
                        if (((month==12) | (month==1) | (month==2))){                       //12月～2月を冬と定義
                             season="winter";
                        }
                             else if ((month>=3) && (month <=5)) {                                  //3月～5月を春と定義
                                  season="spring";
                             }

                                    else if ((month>=6) && (month <=8)) {                           //6月～8月を夏と定義
                                          season="summer";
                                     }
                                         else if ((month>=9) && (month <12)) {                      //9月～11月を秋と定義
                                              season="fall";
                                         }  

                                              // else {                                                                             // 異常処理0, 12以上
                                              //     season="others";
                                              // }
           
          //document.write("季節は",season,"です。<BR>");                                      // For Debug
         

          document.write("<IMG src='alcoholic_beverages_usa/images/logo-",season,".gif' width='515' height='64' border='0'> ");


      
   