//sc01
if (document.images) {
	// 設定開始（使用する画像を設定してください）
	// 通常の画像
	var img1_0 = new Image();
	img1_0.src = "images/top_sc_bg01.jpg";
	// ポイント時の画像1
	var img1_1 = new Image();
	img1_1.src = "images/top_sc_bg01_o.jpg";
	// 設定終了
}

// ポイント時の処理
function On1(name) {
	if (document.images) {
		document.images['def1'].src = eval(name + '.src');
	}
}

// 放した時の処理
function Off1() {
	if (document.images) {
		document.images['def1'].src = img1_0.src;
	}
}


//sc02
if (document.images) {
	// 設定開始（使用する画像を設定してください）
	// 通常の画像
	var img2_0 = new Image();
	img2_0.src = "images/top_sc_bg02.jpg";
	// ポイント時の画像1
	var img2_1 = new Image();
	img2_1.src = "images/top_sc_bg02_o.jpg";
	// 設定終了
}

// ポイント時の処理
function On2(name) {
	if (document.images) {
		document.images['def2'].src = eval(name + '.src');
	}
}

// 放した時の処理
function Off2() {
	if (document.images) {
		document.images['def2'].src = img2_0.src;
	}
}


//sc03
if (document.images) {
	// 設定開始（使用する画像を設定してください）
	// 通常の画像
	var img3_0 = new Image();
	img3_0.src = "images/top_sc_bg03.jpg";
	// ポイント時の画像1
	var img3_1 = new Image();
	img3_1.src = "images/top_sc_bg03_o.jpg";
	// 設定終了
}

// ポイント時の処理
function On3(name) {
	if (document.images) {
		document.images['def3'].src = eval(name + '.src');
	}
}

// 放した時の処理
function Off3() {
	if (document.images) {
		document.images['def3'].src = img3_0.src;
	}
}


//sc04
if (document.images) {
	// 設定開始（使用する画像を設定してください）
	// 通常の画像
	var img4_0 = new Image();
	img4_0.src = "images/top_sc_bg04.jpg";
	// ポイント時の画像1
	var img4_1 = new Image();
	img4_1.src = "images/top_sc_bg04_o.jpg";
	// 設定終了
}

// ポイント時の処理
function On4(name) {
	if (document.images) {
		document.images['def4'].src = eval(name + '.src');
	}
}

// 放した時の処理
function Off4() {
	if (document.images) {
		document.images['def4'].src = img4_0.src;
	}
}








