function swapImage(){
	var dt = new Date();
	var m = dt.getMonth() + 1;
	var d = dt.getDate();
	if(m == 1 && d >= 1 && d <= 7){
		//謹賀新年イメージ
		document.getElementById('imgframe').innerHTML="<img src=\"image/new_year.gif\" id=\"imgframe\" alt=\"謹賀新年\" width=\"900\" height=\"81\" />";
	}else{
		//通常イメージ
		document.getElementById('imgframe').innerHTML="<img src=\"image/top_main.gif\" id=\"imgframe\" alt=\"アスカネット\" width=\"900\" height=\"110\" />";
	}
}


