// --------------------------------------------------
// JavaScript Library
// Version: Aug 2008
// Depends: jquery-1.2.6.js
// --------------------------------------------------
// Location URI
// --------------------------------------------------
// var locationURI = "http://dyn.design-sample.net/fuji/master";
var locationURI = "http://www.fujihotel-nagoya.com";


// --------------------------------------------------
// 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()});

