function changeChick(chickNumber) {

  var chickCopy = "";
  
  switch (chickNumber) {
  
 	case "1":
   	document.chickImage.src = "http://a1432.g.akamai.net/7/1432/1365/20091124/away.com/images/outside/adventure-lodges/slide1.jpg";
	document.chickImage.alt = "Hot Properties";
  	chickCopy = '<a href="/outside/destinations/winter-traveler-2005/top-adventure-lodges-1.html"><strong>Hot Properties</strong></a><br /><br class="small" />From a Namibian safari camp to a New Orleans hideaway, ten sweet spots for true travel R&R.<br /><br class="small" /><a href="/outside/destinations/winter-traveler-2005/top-adventure-lodges-1.html">Click here to read the article</a>'
    break;
  	case "2":
  	document.chickImage.src = "http://a1432.g.akamai.net/7/1432/1365/20091124/away.com/images/outside/adventure-lodges/slide2.jpg";
	document.chickImage.alt = "Hotel Oceana";
  	chickCopy = '<a href="/outside/news/200405/scuba_diving_resort.html"><strong>Hotel Oceana</strong></a><br /><br class="small" />An innovative dive outfitter lays plans to build a futuristic platform resort&#151;right next to the reef.<br /><br class="small" /><a href="/outside/news/200405/scuba_diving_resort.html">Click here to read the article</a>'
	break;
	case "3":
   	document.chickImage.src = "http://a1432.g.akamai.net/7/1432/1365/20091124/away.com/images/outside/adventure-lodges/slide3.jpg";
	document.chickImage.alt = "Gold Digs";
  	chickCopy = '<a href="/outside/features/200502/boutique-hotels.html"><strong>Gold Digs</strong></a><br /><br class="small" />A new class of hotels pitches boutique offerings to thrill-seeking hipsters.<br /><br class="small" /><a href="/outside/features/200502/boutique-hotels.html">Click here to read the article</a>'
	break;
	case "4":
  	document.chickImage.src = "http://a1432.g.akamai.net/7/1432/1365/20091124/away.com/images/outside/adventure-lodges/slide4.jpg";
	document.chickImage.alt = "Himalayan Heaven";
  	chickCopy = '<a href="/outside/features/200410/lodges_himalayans.html"><strong>Himalayan Heaven</strong></a><br /><br class="small" />High-elevation adventure meets modern luxury in the new sanctuaries of beautiful Bhutan.<br class="small" /><a href="/outside/features/200410/lodges_himalayans.html">Click here to read the article</a>'
	break;
	case "5":
  	document.chickImage.src = "http://a1432.g.akamai.net/7/1432/1365/20091124/away.com/images/outside/adventure-lodges/slide5.jpg";
	document.chickImage.alt = "Tough Luxe";
  	chickCopy = '<a href="/outside/features/200408/british_Columbia_adventure_lodge.html"><strong>Tough Luxe</strong></a><br /><br class="small" />If British Columbia didn\'t invent the adventure lodge, the province sure has perfected the genre. Welcome to four that do it right, with a twist: You can\'t drive to any of them.<br /><br class="small" /><a href="/outside/features/200408/british_Columbia_adventure_lodge.html">Click here to read the article</a>'
	break;  
  default: 	//probably want to make this default to the first image/copy
  	document.chickImage.src = "http://a1432.g.akamai.net/7/1432/1365/20091124/away.com/images/outside/adventure-lodges/slide1.jpg";
	document.chickImage.alt = "Hot Properties";
  	chickCopy = '<a href="/outside/destinations/winter-traveler-2005/top-adventure-lodges-1.html"><strong>Hot Properties</strong></a><br /><br class="small" />From a Namibian safari camp to a New Orleans hideaway, ten sweet spots for true travel R&R.<br /><br class="small" /><a href="/outside/destinations/winter-traveler-2005/top-adventure-lodges-1.html">Click here to read article</a>'
  	break;
  
  }
  
  document.getElementById("risingStars").innerHTML = chickCopy;

}//end changeChick function