page = {

	htl_type: null,
	typeMatch: ['hotel','apartment','villa','studio'],

	init: function() {
		var movieUrl = "content/fulllist.swf";
		if ( this.htl_type && Array.exists(this.typeMatch, this.htl_type.toLowerCase()) ) { 
			movieUrl = "content/"+this.htl_type.toLowerCase()+"s.swf";
		}

		dom.cssAdd(['fieldset.area p.nav a', 'margin-right: 1em;']);
	}

};