/* ===================================================================
JS information

 script info :index用スクリプト（ Use jQuery ）
 
 *Since: 2011-03-10
=================================================================== */


// 更新日の表示
//function dispDate(){
	//var now = new Date();
	//var gif = DateFormatter.format(now, "Ym") + ".gif";
	//var alt = DateFormatter.format(now, "F Y");
	//document.write('<img src="/img/' + gif + '" title="' + alt + '" alt="' + alt + '">');
//};


$(function() {
	
	// 可変グリッド
	var hsort_flg = false;
	var vg = $("#grid-content").vgrid({
		easeing: "easeOutCirc",
		useLoadImageEvent: true,
		useFontSizeListener: true,
		time: 300,
		delay: 50,
		fadeIn: {
			time: 200,
			delay: 80
		}
	});
	
	// news ティッカー
	$('#ticker').list_ticker({
		speed:5000,
		effect:'fade'
	});	

	// メインイメージフェード
    $('.imgMain img:gt(0)').hide();
	setInterval(function(){
		$('.imgMain :first-child').fadeOut().next('img').fadeIn().end().appendTo('.imgMain');
	}, 7000);

});
