$(function(){
											
	//biggerlink
	$('#newsarticle li, #lineinfo li').biggerlink({follow:false});
	
	//slider
	jQuery('#slider').jcarousel({
		vertical: true,
		scroll:5,
		animation:"slow"
		//auto:"2"
	});
	
	//重要なお知らせ
	$('#lineinfo').innerfade({
		animationtype:'fade',
		speed:1000,
		containerheight:'50px',
		timeout:8000
	});
	
	//プロモエリアランダム処理
	var hash = window.location.hash;
	hash = hash.replace(/^.*#/, '');
	chgView(hash);

});

// urlのhashを読んで、id付与
function chgView(hash){
	if (!hash){
		rndmView();
		return false;
	}else if(
		hash=="home_promo01" ||
		hash=="home_promo02" ||
		hash=="home_promo03" ||
		hash=="home_promo04" 
		) {
		showPromo(hash);
	}else{
		rndmView();
		return false;
	}
}

// urlのhashが存在する場合、hashをよんでプロモ表示
function showPromo(hash) {
	var h2Id = hash;
	//$("#" + h2Id).addClass("show");
	$("#" + h2Id).fadeIn(1200);
	$("#home_noscript").addClass("hide");
}

// urlのhashが存在しない場合、ランダム処理
function rndmView() {		
	var len = 4;
	var arr = ["home_promo01","home_promo02", "home_promo03", "home_promo04"];
	var rand = Math.floor( Math.random() * len);
	var h2Id = arr[rand];
	//$("#" + h2Id).addClass("show");
	$("#" + h2Id).fadeIn(1200);
	$("#home_noscript").addClass("hide");
}	