    //////////////////////////////////////////////////////////////////////////////////////////
    <!--
    // the list of billboard strings to display
    var aBillboardItems = new Array(
        "<strong style=\"font-size: 12px;\">National Scrapbook Day - Saturday May 3rd</strong>",
        "<strong style=\"font-size: 12px;\">QuicKutz Club member-only breakfast 8 - 10 a.m.</strong>",
        "<strong style=\"font-size: 12px;\">NEW QuicKutz Gift Sets with chances to win a free vacation!</strong>",
        "<strong style=\"font-size: 12px;\">FREE make-n-takes with QuicKutz 10 a.m. - 12:00 p.m.</strong>",
        "<strong style=\"font-size: 12px;\">FREE use of the new QuicKutz 12\" platform!</strong>",
        "<strong style=\"font-size: 12px;\">FREE giveaways every hour (must be present to win)</strong>",
        "<strong style=\"font-size: 12px;\">National Scrapbook Day - Saturday May 3rd</strong></strong>",
        "<strong style=\"font-size: 12px;\">FREE Kokuyo adhesive with any purchase over $15 (while supplies last)</strong>",
        "<strong style=\"font-size: 12px;\">FREE Silhouette Demos by Kris from QuicKutz</strong>",
        "<strong style=\"font-size: 12px;\">FREE product demos 3 - 5 p.m.</strong>",
        "<strong style=\"font-size: 12px;\">FREE fun all day long!</strong>",
        "<strong style=\"font-size: 12px;\">NEW scrapbooking t-shirts available</strong>"
        );
    // the string index to start with (0 is first)
    var iCurItem = 0;
    // the numbers of items to display. if this is "null" then the browser
    // is really old and we should do nothing
    var iNumItems = aBillboardItems.length;
    // the length (in milliseconds) for which each item will be displayed
    var iDelayMilliseconds = 3000;
    
    iNumItems = 0; // disabled

    function showNextItem() {
        var sHTML = "";

        // show the text
        if (iNumItems != null && iNumItems > 0) {
            sHTML = '<table width="100%" cellpadding="2" cellspacing="2" border="0"><tr><td align="center" valign="middle">';
            sHTML += aBillboardItems[iCurItem];
            sHTML += '</td></tr></table>';

            document.getElementById("BillboardDiv").innerHTML = sHTML

            // set the next item, roll-over to the start of the list, if needed
            iCurItem = (iCurItem + 1) % iNumItems;

            // run this function again after a delay
            setTimeout("showNextItem()", iDelayMilliseconds);
        }
    }
    // -->
    //////////////////////////////////////////////////////////////////////////////////////////