// JavaScript Document


acDate=new Date();
mySeconds=acDate.getSeconds();
myMinutes=acDate.getMinutes();
myHour=acDate.getHours();
myDate=acDate.getDate();
myMonth=acDate.getMonth() +1;

//　トップページ用

function top_fukidashi(){

//正月
	if((myMonth==1) && (myDate<=4)){
document.write('<a href="http://www.ippodo-tea.co.jp/topics/news/2849/">');
document.write('<img src="images/top/bt_hsh_def.png" width="185" height="50" alt="年末年始のお知らせ" />');
document.write('</a>');
}

//なし
	else if((myMonth<=11)){
}

//雪(年末年始)
	else if((myMonth<=12)){
document.write('<a href="http://www.ippodo-tea.co.jp/topics/news/2849/">');
document.write('<img src="images/top/bt_hsh_def.png" width="185" height="50" alt="年末年始のお知らせ" />');
document.write('</a>');
}

else{}
}
