/***********************\
* Author: C. Crump      *
* last update: 09/19/03 *
\***********************/

// Opens a link in a new window
function updateColor2(color)
{
	
	document.getElementById("color").innerHTML = color;
	document.getElementById("color").innerTEXT = color;
}


// Opens a link in a new window
function updateColor(color, material)
{
  var x = color;
  document.getElementById(material).childNodes[0].nodeValue = x;
}

// Opens a link in a new window
function updateInfo(i)
{
  var value = i;
  var info;
  switch (value){
	case 'home':
	info = 'Return to the homepage.';
	break;
	case 'sandals':
	info = 'Browse our sandal collection.';
	break;
	case 'weddings':
	info = 'Tie the knot in style';
	break;
	case 'creation':
	info = 'Don\'t know where to start? Click here to see the steps to your own sandal.';
	break;
	case 'contact':
	info = 'Contact us.';
	break;
	case 'about':
	info = 'Who we are and what we do.';
	break;
	default : info = '';
  }
  document.getElementById('infobox').childNodes[0].nodeValue = info;
}

function select(s, img)
{
  var style = s;
  var image = img;
  var tag = '<img src="images/sandals/' + style + '/full/' + image + '" alt="" />';
  document.getElementById('img').innerHTML = tag;
}