/*------------------------------------------------------------------------------------
2008.12.26 banner switch
--------------------------------------------------------------------------------------*/
Array.prototype.shuffle = function(){
    var len = this.length;
    var ary = this.concat();
    var res = [];
    while(len) res.push(ary.splice(Math.floor(Math.random()*len--),1));
    return res
}

jQuery(function(){
	jQuery('p#bnrSwitch01').each(function(){
		var switchArray = new Array(0, 1);
		switchArray = switchArray.shuffle();
		if(switchArray[0] == 0){
			var bnrObject = new Object();
			bnrObject["href"] = "/locate/b04091102/index.php"; //url
			bnrObject["src"] = "/images/index_bnr_76.jpg"; //ファイル名
			bnrObject["alt"] = "年賀状印刷　印刷代金最大15％割引！"; //alt
			this.firstChild.firstChild.src = bnrObject["src"];
			this.firstChild.firstChild.alt = bnrObject["alt"];
			this.firstChild.href = bnrObject["href"];
		}
	})
})

var topNaviHeight;
function changePos(){
	topNaviHeight = document.getElementById("topNaviH").offsetHeight;
	var topPos = topNaviHeight - 98 + "px";
	$(".toList").css("top", topPos);
	setTimeout("changePos()", 500);
}
function initListLink(){
	topNaviHeight = document.getElementById("topNaviH").offsetHeight;
	changePos();
}
/*------------------------------------------------------------------------------------

--------------------------------------------------------------------------------------*/
try {
	window.addEventListener('load',initListLink , false);
} catch(e){
	window.attachEvent('onload',initListLink);
}




