$(function(){
	/*季節を取得*/
	var season = function(){
		var d = (new Date()).getMonth();
		var s;
		(1<d && 5>d)?s="spring":
		(4<d && 8>d)?s="summer":
		(7<d && 11>d)?s="autumn":
		(10<d || 2>d)?s="winter":
		s="";
		return s;
	};
	
	/*ブラウザと季節によってフッターを変更*/
	if($.browser.msie && ($.browser.version<7)){

		$("div#footer").css({"background":"url(images/footer/bg_footer_"+season()+".gif) repeat-x"});
	}else{	
		$("div#footer").css({"background":"url(images/footer/bg_footer_"+season()+".png) repeat-x"});
	};
	

	/*トップページタイトルのフェード*/
	if(!$.browser.msie){
		$("h2 img,#container p img").not('#bnrALBUM img').hide();
		$("h2 img").fadeIn(1500);
		setTimeout(function(){$("#container p img").fadeIn(3000);},1500);
	}
	
   /*フッター内のニュースを表示*/
	
/*	modify 2009-05-30 commentout	
	$("#f-news #f-news-list").hide();
	
	$("#f-news-tab").toggle(
		function(event){
			event.preventDefault();
			$("#footer").animate({height:"300px"},400);
	 		$("#f-news-list").load( "./news_list.html");
			setTimeout(function(){$(" #f-news-list").fadeIn(800)},1000);
		},
		function(){
			$(" #f-news-list").fadeOut(500).hide();
			setTimeout(function(){$("#footer").animate({height:"135px"},400)},500);
		}
	);	
	
*/
	
		
	

	
});

