jQuery(document).ready(function($)
{
	if($('#sm').length>0) {slideMenu.build('sm',390,10,10,1);}

	//トップページティッカー
	function newsFader(){
		 if($("li","div#newsTicker ul").length==1) return false;
		$("li","div#newsTicker ul").each(function(i){
			$(this).attr("id","news-"+i);
			if(i!=0) $(this).hide();
		});
	    var start = count = 0,
 	   end = $("li","div#newsTicker ul").length-1,
	    interval = 9000,
 	   fadeTimer = setInterval(function(){
		      $("li#news-"+(start==1 ? count==0 ? end : count-1 : count)).hide();
		      $("#news-"+(start==1 ? (++count)-1 : ++count)).fadeIn();
		      if(start==0 && count>=end){
 			       count = 0;
 			       start = 1;
		      }else if(start==1 && count>end){
   			     count = 0;
			}
		},interval);
	}
	newsFader();
});

function newUp(y, m, d, c) {
delDay = 10; // 何日後に削除するか
oldDay = new Date(y + "/" + m + "/" +d);
newDay = new Date();
d =(newDay - oldDay) / (1000 * 24 * 3600);
if(d <= delDay) {
// Newマーク
if(c == "new") document.write(" <img src='http://test02.chugakujuken.jp/komatou/wp-content/themes/gakkoubetsu/img/new_ani.gif' border='0' />");
// Upマーク
if(c == "up") document.write(" <img src='http://test02.chugakujuken.jp/komatou/wp-content/themes/gakkoubetsu/img/up_ani.gif' border='0'  />");
} //if(d <= delDay)
} //function newUp(y, m, d, c)
