// JavaScript Document

function HideContent(d) {
	if(d.length < 1) { return; }
	document.getElementById(d).style.display = "none";
}

function ShowContent(d) {
	if(d.length < 1) { return; }
	document.getElementById(d).style.display = "block";
}

function ReverseContentDisplay(d) {
	if(d.length < 1) { return; }
	if(document.getElementById(d).style.display == "none") { document.getElementById(d).style.display = "block"; }
	else { document.getElementById(d).style.display = "none"; }
}

var current_room;
var descriptions = new Array();
var next_id;
var previous_id;

// List of descriptions, named RoomId

descriptions['sundance1'] = "Features a lovely sitting room facing a large three-part bay window, revealing a panoramic mountain view that can be enjoyed from the luxurious overstuffed sofa.";
descriptions['sundance2'] = "Romantic, refreshing Jacuzzi tub for two, oversized marble shower enclosure, lavatory and private toilet.";
descriptions['sundance3'] = "Antique hand carved walnut bed, showing part of the beamed cathedral ceiling (with skylight), and an antique steamer trunk. Bed features a down-filled duvet.";
descriptions['sundance4'] = "Enjoy a book, a movie or simply gaze out at the beautiful mountains from the comfort of your own sitting room.";

descriptions['mummy1'] = "Bedroom area showing antique iron bed. The bedroom is on an elevated level connected to the shower/toilet room and overlooks the sunken living room.";
descriptions['mummy2'] = "Spa level showing Jacuzzi tub and large double window. The Spa level overlooks the living sunken room.";
descriptions['mummy3'] = "Sunken Living room with fireplace, Television/VCR, conversation area, refrigerator, microwave oven, and round fold up table for in-room dining, card playing, etc.";
descriptions['mummy4'] = "View of the private entrance to a redwood private deck and private parking area. Bedroom on the left, Spa to the right. This unit also features an elevated window that allows unique sunlight from the western sun.";

descriptions['snowdrift1'] = "Newly remodeled, this suite has a private entrance from the east and opens into the main lodge common area. The suite includes a small refrigerator, microwave oven, CD player, and AM/FM radio.";
descriptions['snowdrift2'] = "Loyally following the décor rules of &quot;Arts and Crafts,&quot; the motif features an antique walnut bed with a queen-sized mattress and down-filled comforter.";
descriptions['snowdrift3'] = "The private oversized marble shower complements an equally private toilette, in the bedroom area.";
descriptions['snowdrift4'] = "A cheerful lounging area includes an extensive library, TV/VCR, and a unique bathing alcove containing an oversized, deep soaking tub for two. This area features a cantilevered ceiling, resulting in a feeling of modern spaciousness, blended with Arts and Crafts styling of yesteryear. A room focused gas fired fireplace occupies its own corner. Antique dolls and stuffed animals preserved for decades, from past generations can be found in unsuspected niches!";

descriptions['olympus1'] = "Victorian style sleeping area with queen-sized bed, down filled duvet comforter, and windows opening to the Mummy Mountain Range.";
descriptions['olympus2'] = "Faux (electric) fireplace adds warmth and romance to the room.";
descriptions['olympus3'] = "Jacuzzi spa tub in the master bedroom. Lit candles and the fireplace turn this into an extremely private, romantic getaway for anyone celebrating a special occasion.";
descriptions['olympus4'] = "Sitting room features TV/VCR, CD player, refrigerator, and microwave oven.";
descriptions['olympus5'] = "Enjoy the privacy of your own cottage retreat.";

descriptions['columbine1'] = "Great Room with Fireplace";
descriptions['columbine2'] = "Master bedroom provides luxurious feather comforters & comfortable queen beds";
descriptions['columbine3'] = "Oversized Jacuzzi tub for two is state-of-the-art with inline heater and adjustable jets.  For your comfort we provide robes for your use.";
descriptions['columbine4'] = "Great Room View to Kitchen with 12 foot Tongue and Groove Pine Ceiling";
descriptions['columbine5'] = "Loft serves as a cozy sitting area and second bedroom.";
descriptions['columbine6'] = "Hand-hewn staircase leads to the loft, and a piano adds elegance to the cabin's western charm.";
descriptions['columbine7'] = "Artist rendering of the Columbine and Twin Owls cabin.";

descriptions['twin1'] = "Master bedroom provides luxurious feather comforters & comfortable queen beds";
descriptions['twin2'] = "Great Room with Fireplace";
descriptions['twin3'] = "Loft serves as a cozy sitting area and second bedroom.";
descriptions['twin4'] = "Enjoy magnificent views from the open living room.";
descriptions['twin5'] = "Great Room View to Kitchen with 12 foot Tongue and Groove Pine Ceiling";
descriptions['twin6'] = "Full size Kitchen with plates, glasses, flatware, pans and coffee maker.  A full size Refrigerator, dishwasher, stove with built in microwave make this your comfortable home away from home for entertaining or intimate dinners.  Notice the spectacular view of Mummy Mountain Range and Twin Owls Rock formation from the window...";
descriptions['twin7'] = "Artist rendering of the Columbine and Twin Owls cabin.";

function setContent(room,id) {
	
	// Saves the current room. Used by next/previous
	if (room == "") {
		room = current_room;	
	}
	
	current_room = room;
	
	// Sets next id
	next_id = id+1
	if(!window.descriptions[room+next_id]) {
		next_id = 1
	}
	
	// Sets previous id
	previous_id = id-1;
	if(!window.descriptions[room+previous_id]) {
		
		// Starting at the max pictures on a page, goes back until it finds a defined entity
		previous_id = 6;
		while(!window.descriptions[room+previous_id]) {
			previous_id--;	
		}
		
	}
	
	// Sets the description in the pic_desc div
	var current_description = descriptions[room+id];
	document.getElementById('pic_desc').innerHTML= current_description;
	
	// Sets the photo
	document.big_pic.src="pic-" + room + id + "_big.jpg";
	
	
}
