<!-- Begin

// CHANGE ANY OF THESE VARIABLES TO "no" OR "yes" TO TURN AN OPTION OFF OR ON

// ONLY USE lowercase FOR ALL OPTIONS




var paragraph_1 	= "yes"		// SHOW THE 1ST PARAGRAPH... Admission
var paragraph_2 	= "yes"		// SHOW THE 2ND PARAGRAPH... Discounts
var paragraph_3 	= "yes"		// SHOW THE 3RD PARAGRAPH... Sponsors
var showimage		= "no"		// SHOW A SIDEBAR IMAGE
var showscroller	= "yes"		// SHOW SIDEBAR SCROLLER
var topspacing		= "10"		// NUDGE SIDEBAR DOWN
var sidewidth		= "125"		// SIDEBAR WIDTH





// NUDGE SPACER
document.write('<img src="picts/spacer.gif" height="'+topspacing+'" width="'+sidewidth+'"><br>');

document.write('<table cellpadding="5" cellspacing="10" border="0" class="sidebartext-right"><tr><td>');


// START RIGHT SIDEBAR AREA PARAGRAPH 1 EDIT THIS AREA

   if (paragraph_1 == "yes") {

document.write('<fieldset><legend>');

document.write('Admission:<br></legend>');

document.write('Cars: $15/each<br>');
document.write('Buses: $1/person ($15/min)<br>');
document.write('<a href="ContactUs.htm">Contact us...</a><br>');



document.write('</fieldset>');
document.write('<br><br>');

}
// END RIGHT SIDEBAR AREA PARAGRAPH 1



// SMALL PICTURE AREA

   if (showimage == "yes") {

document.write('<br><center>');
document.write('<a href="index.htm"><img src="picts/sidebar-right.jpg" border="0" class="borders"></a><br>');
document.write('</center>');
document.write('<br><br>');
}


// START RIGHT SIDEBAR AREA PARAGRAPH 2 EDIT THIS AREA

   if (paragraph_2 == "yes") {

document.write('<fieldset><legend>');

document.write('Discounts<br></legend>');

document.write('Get $2 off by ordering on-line OR bring three cans of food or a new, unwrapped toy to the gate.  Check the Pricing page for other available discounts.<br>');

document.write('</fieldset>');
document.write('<br><br>');

}
// END RIGHT SIDEBAR AREA PARAGRAPH 3


// START RIGHT SIDEBAR AREA PARAGRAPH 3 EDIT THIS AREA

   if (paragraph_3 == "yes") {

document.write('<fieldset><legend>');

document.write('Sponsors<br></legend>');

document.write('<a href="http://AZcelebrationoflights.com" target="_blank">US Bank</a><br>');

document.write('<a>  </a><br>');
document.write('<a>The U.S. Bank Arizona Celebration of Lights is proudly produced by Shonna James Communications, LLC and</a><br>');
document.write('<a href="http://www.WinterlandInc.com/" target="_blank">Winterland</a><br>');


document.write('</fieldset>');
document.write('<br><br>');

}
// END RIGHT SIDEBAR AREA PARAGRAPH 2




document.write('</td></tr></table>');


// -- END -->