var Category = function(){
	this.init=function(id){
		this.container = document.getElementById(id);
		this.sections = this.container.getElementsByTagName("div");
		this.urls = document.getElementById("secondary").getElementsByTagName("a");
		this.images = new Array();
		var ti;
		var cl = window.location.href.toString();
		var si = bannerimages[cl.substring(cl.lastIndexOf("/")+1, cl.length-5)]
		for(var image in si){
			ti = new Image();
			ti.src = bannerimages.folder+si[image];
			this.images[image] = ti
		}
	};
	this.gotosection=function(url, toshow){
		var bannerimage = document.getElementById("banner-image");
		bannerimage.src = this.images[toshow].src;
		
		toshow = document.getElementById(toshow);
		for(var i=0; i<this.urls.length; i++){
			this.urls[i].className = "";
		}
		url.className = "selected";
		for(var i=0; i<this.sections.length; i++){
			if(this.sections[i].parentNode == this.container)
				this.sections[i].style.display = "none";
		}
		toshow.style.display = "";
	};
};
var bannerimages = {
	folder:"resources/images/",
	welcome:{about:"about-9795.jpg", thing:"things-9702.jpg" },
	services:{staff:"serv_meetmartina.jpg", cook:"cook-9551.jpg", tips:"tip-9743.jpg" },
	"puerto-vallarta":{beaches:"beach-09.jpg", dining:"dining-9837.jpg", rec:"zipline.jpg", know:"things-terrace-room.jpg"},
	location:{maps:"location_map.gif" }
};
var sections = new Category();
window.onload = function(){
	sections.init("content-border");
};
