$(document).ready(function(){
	//rollover
	$("div#Header li img[src*='_ot']").rollover();
	$(".rollover img[src*='_ot'], .rollover[src*='_ot']").rollover();
	
	//fadeimage
	$(".fade a img, img.fade").fadebutton();
	
	//scroller
	$("a[href^='#']:not([target])").scroller();
	$("a[href*='#'][href*='.']:not([target])").overScroll();
	
});

// 画像のロールオーバー
function initRollOverImages() {	
	var image_cache = new Object();
	$(".rollover a img").not("[src*='_on.']").each(function(i) {
		var imgsrc = this.src;
		var dot = this.src.lastIndexOf('.');
		var imgsrc_on = this.src.substr(0, dot) + '_on' + this.src.substr(dot, 4);
		image_cache[this.src] = new Image();
		image_cache[this.src].src = imgsrc_on;
		$(this).hover(
			function() { this.src = imgsrc_on; },
			function() { this.src = imgsrc; }
		);
	});
}
$(document).ready(initRollOverImages);
