function smartRollover() {
	if(document.getElementsByTagName) {
		var images = document.getElementsByTagName("img");

		for(var i=0; i < images.length; i++) {
			if(images[i].getAttribute("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 addFavorite() {
	//Internet Explorer
	//ブラウザ上では[お気に入りに追加]というボタンが表示されます
	if(navigator.userAgent.indexOf("MSIE") > -1){
	document.write('<input type="image" src="images/favorit_off.gif" alt="お気に入りに追加"');
	document.write(' onclick="window.external.AddFavorite(\'http://www.roof-reform.com/\',\'屋根のお手入れはルーフリフォーム.com\')"><br>');
	}
	//Firefox
	//ブラウザ上では[ブックマークに追加]というボタンが表示されます
	else if(navigator.userAgent.indexOf("Firefox") > -1){
	document.write('<input type="image" src="images/favorit_off.gif" alt="お気に入りに追加"');
	document.write(' onclick="window.sidebar.addPanel(\'屋根のお手入れはルーフリフォーム.com\',\'http://www.roof-reform.com/\',\'\');"><br>');
	}
	//Netscape
	//ブラウザ上では[ブックマークに追加]というボタンが表示されます
	else if(navigator.userAgent.indexOf("Netscape") > -1){
	document.write('<input type="image" src="images/favorit_off.gif" alt="お気に入りに追加"');
	document.write(' onclick="window.sidebar.addPanel(\'屋根のお手入れはルーフリフォーム.com\',\'http://www.roof-reform.com/\',\'\');"><br>');
	}
	//Opera
	//ブラウザ上では[ブックマークに追加]というリンクが表示されます
	else if(navigator.userAgent.indexOf("Opera") > -1){
	document.write('<a href="http://www.roof-reform.com/" rel="sidebar" title="屋根のお手入れはルーフリフォーム.com">ブックマークに追加<\/a><br>');
	}
	//上記以外のブラウザは、何も実行(表示)されません
}
