//messages is an array of variable length.  Each element of the array is a text string
//message to be displayed as part of a scrolling marquee
//
//Works with IE only. Netscape users see nothing.

j=0;
messages = new Array()
// Products
messages[j++] = "Reserve your spot now for the 2003 rafting season. <a href='guided.trips.htm'><b>Make a reservation online!</b></a>";
today=new Date();
if(today.getMonth == 1 && today.getDate >= 9 && today.getDate <= 9){
  messages[j++] = "... <a href='#'>...</a>."; 
}
/* Archive */
/* 
Ended [01/01/02]
	messages[j++] = "Text <a href='#'>Link</a>.";
Ended [01/02/02]
	messages[0] = "Text."
	messages[1] = "Text"
	messages[2] = "Text"
	messages[3] = "Text"
	messages[4] = "Text"
	messages[5] = "Text <a href='#'>Link</a>."
	messages[6] = "Text <a href='#'>Link</a>"
	messages[7] = "Text"
*/

/* Time Sensitive Links 
today=new Date();
if(today.getMonth == 9 && today.getDate >= 9 && today.getDate <= 14){
  messages[j++] = "Time-Sensitive Text <a href='#</a>.";
}
if(today.getMonth == 9 && today.getDate >= 14 && today.getDate <= 20){
  messages[j++] = "Time-Sensitive Text."; 
}
*/
