// JavaScript Document 
// backgroundImage switch v 1.0mg
// 01.25.09

 <!--  
  function backgroundImage(image) {
	// easier to write this as a switch for the 12 images
	var tag=document.getElementById("masthead");
	var tagHeader=document.getElementById("header");
	// add changeColor function to change the font color on dark bkds - tbd
	var tag_a=document.getElementsByTagName("a");
	switch(image) {
	  case "city_view":
	    tagHeader.style.backgroundImage = "none";
		tagHeader.style.height = "333px";
	    tag.style.backgroundImage = "url('../options/mastheads/city_view.jpg')";
		tag.style.height = "219px";
		break
	  case "mountain_view":
	    tagHeader.style.backgroundImage = "none";
		tagHeader.style.height = "281px";
	    tag.style.backgroundImage = "url('../options/mastheads/mountain_view.jpg')";
		tag.style.height = "175px";
		break
	  case "success":
	    tagHeader.style.backgroundImage = "none";
		tagHeader.style.height = "281px";
	    tag.style.backgroundImage = "url('../options/mastheads/success.jpg')";
		tag.style.height = "288px";
		break
	  case "sunset":
	    tagHeader.style.backgroundImage = "none";
		tagHeader.style.height = "281px";
	    tag.style.backgroundImage = "url('../options/mastheads/sunset.jpg')";
		tag.style.height = "166px";
		break
	  case "silver_globe":
	    tagHeader.style.backgroundImage = "url('../options/mastheads/silver_globe.jpg')";
		tagHeader.style.height = "160px";
		tag.style.backgroundImage = "none";
		tag.style.height = "50px";
	  default:   
	}
  }
  // -->
