// JavaScript Document


function aChoiceWasMade()
{  
	 var i = document.getElementById("makeAChoice");
	 // Target the makeAChoice id element
	 i.style.display = "block";
	 // Turn its CSS display to 'block'
	 var j = document.getElementById("firstChoice");
	 j.style.display = "none";
}

function letsGoToBaffinIsland()
{
	var i = document.getElementById("middle");
  // Target the middle DIV 
  i.style.display = "block";
  // Turn its display on 
  i.style.padding = "10px";
  // Give the middle DIV some padding 
  i.style.backgroundColor = "rgb(169, 206, 252)";
  // Set the background color of the middle DIV 
  var j = document.getElementById("islandPicture"); // The picture element ID
  j.src = "baffinIslandPicture.jpg"
}

function letsGoToBermuda()
{
	var i = document.getElementById("middle");
  // Target the middle DIV 
  i.style.display = "block";
  // Turn its display on 
  i.style.padding = "10px";
  // Give the middle DIV some padding 
  i.style.backgroundColor = "rgb(245, 255, 68)";
  // Set the background color of the middle DIV 
  var j = document.getElementById("islandPicture"); // The picture element ID
  j.src = "bermuda.jpg"
}

function getTextVersion()
{
	alert("You want the text version");
	var i = document.getElementById("defaultStyleSheet");
 i.href="dom2Style.css";
 	var j = document.getElementById("middle");
	j.style.backgroundColor = "white";
	var k = document.getElementById("islandPicture");
	k.style.display = "none";
	var l = document.getElementById("vacationImage");
	l.style.display = "none";
	var m = document.getElementById("buttonSet");
	m.style.display = "none";
}