/***************************************** ロールオーバー 指定方法 *_on.拡張子 *_off.拡張子 のファイルをアップ *****************************************/ function smartRollover() { //▼先読みさせたい画像があれば▼ //var img01 = new Image();*} //img01.src = "../img/btn_back_top_on.gif"; //▲先読みさせたい画像があれば▲ 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); } /***************************************** ブックマーク 指定方法 addBookmark('タイトル','URL'); *****************************************/ function addBookmark(title,url) { if (window.sidebar) { window.sidebar.addPanel(title, url,""); } else if( document.all ) { window.external.AddFavorite( url, title); } else if( window.opera && window.print ) { return true; } } /********************************************************** ▼jquery▼ **********************************************************/