// --------------------------------------------------
// JavaScript Library
// Version: Jul 2008
// Dependencies:
//  jquery-1.2.6.js
// --------------------------------------------------
// Location URI
// --------------------------------------------------
var locationURI = "http://www.hotel-okada.co.jp";

// --------------------------------------------------
// External Links
// --------------------------------------------------
function externalLinks() {
	if (!document.getElementsByTagName) return;
	var anchors = document.getElementsByTagName("a");
	for (var i=0; i<anchors.length; i++) {
		var anchor = anchors[i];
		if (anchor.getAttribute("href") && anchor.getAttribute("rel") == "external") anchor.target = "_blank";
	}
}
$(function(){ externalLinks()});

// --------------------------------------------------
// Rollover Images
// --------------------------------------------------
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."));
				}
			}
		}
	}
}
$(function(){ smartRollover()});
