
aliiSpecial = [ true, "For new bookings, we are now offering a 15% discount. Check our <a href='calendar.html'>calendar</a> for applicable dates" ];


/******************************* NOTES TO DEBBIE *******************************

The first member of the data array "aliiSpecial" must be set as true OR false.
"false" will hide the discount while "true" will show it

The second member of either array MUST ALWAYS be enclosed by double quote marks like this:
"This is where you will write your discount message"

EXAMPLE #1:
aliiSpecial = [ false, "15% discount on all new bookings while this notice is posted!" ];

Debbie: example 1 sets your special language to NOT show for Royal

EXAMPLE #2:
aliiSpecial = [ true, "For new bookings, we are now offering a 15% discount for reservations made with a departure date by Dec. 15, 2003" ];

Debbie: example 2 sets your special language to show for Alii

REMINDER: Note that your special language must ALWAYS be enclosed by a double quotes (no exceptions ever): [ true, "Note that I am surrounded by double quotes" ];

In the unlikely event you need to use a double quote mark within your text, you must "escape" it like this example [ true, "Alii is the \"best darn little condo\" on planet earth!" ];

****************************** END NOTES TO DEBBIE *****************************/
