// JavaScript Document


function getContent(){
var txtList = new Array(24) ;
txtList[0] = "きらめきの新デザイン。ブルーレイノートでハイビジョンを身近に。" ;
txtList[1] = "先進のハードウェア性能を誇る、プレミアムAVノート" ;
txtList[2] = "美しい映像と高音質を追求したハイスタンダードノート！" ;
txtList[3] = "Celｌ技術の映像エンジン搭載で、圧倒的AV性能！" ;
txtList[4] = "ハイビジョンを思う存分楽しめる、エンターテインメントノート" ;
txtList[5] = "タッチパネルで直感操作。ＡＶもＰＣも満喫できる高性能。" ;
txtList[6] = "大画面フルHD液晶とブルーレイでテレビも堪能できるプレミアム「ボードPC」" ;
txtList[7] = "タッチ操作で、インターネットや写真を直感的に楽しむ" ;
txtList[8] = "家族の笑顔が増えていく！直感操作で楽しく写真加工，ムービー編集。" ;
txtList[9] = "高性能PCで、ハイビジョンムービーもサクサク編集" ;
txtList[10] = "仕事も遊びも手を抜かない、そんな男にWindows phone" ;
txtList[11] = "ムービーにも直接ペンで文字やイラストが書ける！" ;
txtList[12] = "DTCP-IP対応ネットワークメディアプレーヤー" ;
txtList[13] = "無線LAN&高画質、リビングに似合う使いやすい複合機" ;
txtList[14] = "世界最薄でいつでも持ち歩けるフルハイビジョンカメラ" ;
txtList[15] = "あなたとPC に、シンプルな毎日を。" ;
txtList[16] = "より速く、便利に、安心に。WindowsR7標準搭載の最新ブラウザ" ;
txtList[17] = "プロ顔負けのオリジナルムービーを、カンタン編集・公開！" ;
txtList[18] = "XPからWindowsR7へPCの環境移行をカンタンに" ;
txtList[19] = "初めてでもOK! 写真・ビデオの整理＆編集/再生ソフト" ;
txtList[20] = "もう使ってみましたか?マイクロソフトの新検索サービス" ;
txtList[21] = "無料 25 GB のオンラインストレージは、フォトアルバムに最適" ;
txtList[22] = "もっと便利に、さらにお得な国内最安インターネット" ;
txtList[23] = "トップレベルのインテリジェントな高性能" ;

var today = new Date();
var num_month = today.getMonth() + 1;
var num_date = today.getDate();
var n;

switch (num_month) {
case 11:
    if ( num_date < 25 ) {
		n = num_date - 1 ;
	} else {
		n = num_date - 25 ;
	}
    break;
case 12:
    if ( num_date < 19 ) {
		n = num_date + 5 ;
	} else {
		n = num_date - 19 ;
	}
    break;
case 1:
    if ( num_date < 12 ) {
		n = num_date + 12 ;
	} else {
		n = num_date - 12 ;
	}
    break;
case 2:
    if ( num_date < 6 ) {
		n = num_date + 18 ;
	} else {
		n = num_date - 5 ;
	}
    break;
default:
    if ( num_date < 3 ) {
		n = num_date + 21 ;
	} else if ( num_date > 27 ) {
		n = num_date - 28 ;
	} else {
		n = num_date - 3 ;
	}
}

document.open();
document.write('<img src="./_lib/images/today_item_ph'+ n + '.jpg" alt="今日のHEROアイテム写真" id="today_item_ph" />' );
document.write('<p id="today_item_txt">'+ txtList[n] + '</p>' );
document.write('<p id="more_link"><img src="./_lib/images/arrow_orange.gif" alt="URL" class="arrow_orange_img" /><a href="./item/index.html">詳しくはこちら</a></p>' );
document.write('<a rel="feedurl" href="ws/item.php" style="display:none;"></a>'  );
document.close();
	
}
