function whatsnew(){
	wn= "2008/11/17" + '<BR>' + "新商品を追加いたしました。" + '<BR>' + "2008/06/11" + '<BR>' + "平成20年6月より値上げをいたしました。";
	document.write('<span style="font-size:1em;">');
	document.write(wn);
	document.write('</span>');
}

function topflash(){
	var today = new Date();
	var month = today.getMonth();
	var tf;
	
	month += 1;
	switch(month){
		case 12:
		case 1:
		case 2:
			tf = "top_d.swf";
			break;
		case 3:
		case 4:
		case 5:
			tf = "top_a.swf";
			break;
		case 6:
		case 7:
		case 8:
			tf = "top_b.swf";
			break;
		case 9:
		case 10:
		case 11:
			tf = "top_c.swf";
			break;
	}
	document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=4,0,2,0" width="320" height="250">');
	document.write('<param name=movie value="top/' + tf + '">');
    document.write('<param name=quality value=high>');
    document.write('<embed src="top/' + tf + '" quality=high pluginspage="http://www.macromedia.com/jp/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" width="320" height="250">');
	document.write('</embed>');
	document.write('</object>');
}