//　ロールオーバー
function smartRollover() {
	if(document.getElementsByTagName) {
		var images = document.getElementsByTagName("img");

		for(var i=0; i < images.length; i++) {
			if(images[i].src.match("_off.")){
				images[i].onmouseover = function() {
					this.setAttribute("src", this.getAttribute("src").replace("_off.", "_on."));
				}
				images[i].onmouseout = function() {
					this.setAttribute("src", this.getAttribute("src").replace("_on.", "_off."));
				}
			}
		}
	}
}

if(window.addEventListener) {
	window.addEventListener("load", smartRollover, false);
}
else if(window.attachEvent) {
	window.attachEvent("onload", smartRollover);
}

// サブウィンドウ

function subWin(url){
	new_wnd=window.open(url,"window6","scrollbars=yes,resizable=no,menubar=no,toolbar=no,width=800,height=500");
}

// マウスアクション

function myChgPic(myPicURL){
   document.images["bigimage"].src = myPicURL;
}


// メールアクション
function mail_ad() {
my_antname = "sonomoto"; //ユーザーアカウント
domain1 = "bunei.net"; //ドメインネーム1
this.location.href = "mailto:" + my_antname + "@" + domain1; 
}


