
    var n_fontSize         = '15px';     // The font size   - it must match the adbokticker stylesheet...
    var n_fontColor        = '#FFFFFF';  // The font colour - it must match the adbokticker stylesheet...
    var n_pauseOnMouseOver = true;       // Whether or not we pause on a given "news item"...
    var n_timeOut          = 2000;       // If we pause on a "news item", this is how long we pause (1/1000 of a second)...
    var n_speed            = 75;         // 1/1000 of a second...
    var n_leadingSign      = '_';        // The leading character of the ticker...

    // Our actual "news" content - all array values must contain something...
    
    var n_content = [
        ['join.aspx', 'Click here to join ADBOK.com', '_self'],
        ['/instructors.aspx', 'Instructors - watch video introductions to ADBOK.com', '_blank'],
        ['/students.aspx', 'Students - watch video introductions to ADBOK.com', '_blank'],
        ['http://www.facebook.com/group.php?gid=85890642995', 'Why not join the ADBOK.com Facebook group?', '_blank'],
        ['http://www.facebook.com/topic.php?uid=85890642995&topic=9755', 'Top Five Tips for ADIs using ADBOK.com', '_blank'],
        ['http://www.brake.org.uk', 'ADBOK.com work with the charity Brake.org to promote safer driving.', '_blank']
    ];

    var n_t = 0;
    var n_cur = 0;
    var n_l = n_content[0][1].length;

    var n_p = n_pauseOnMouseOver ? ' onmouseover="clearTimeout(n_TIM)" onmouseout="n_TIM=setTimeout(\'n_new()\',' + n_timeOut + ')">' : '>';
    var n_k = ' style="text-decoration:none;color:' + n_fontColor + ';"';
    
    function n_new() {
        var O, mes;

        O = document.getElementById('adbokticker');
        mes = n_content[n_t][0] != '' && n_cur == n_l ?
                    ('<a href="' + n_content[n_t][0] + '" target="' + n_content[n_t][2] + '" class="adbokticker"' + n_p + n_content[n_t][1].substring(0, n_cur) + n_leadingSign + '</a>') :
                    ('<span class="adbokticker"' + n_k + '>' + n_content[n_t][1].substring(0, n_cur) + n_leadingSign + '</span>');
        
        if (O != null) {
            O.innerHTML = mes;
        }
        
        if (n_cur++ == n_l) {
            n_cur = 0;
            n_TIM = setTimeout('n_new()', n_timeOut);
            n_t++;
            if (n_t == n_content.length) {
                n_t = 0;
            }
            n_l = n_content[n_t][1].length
        }
        else {
            setTimeout('n_new()', n_speed)
        }
    }

    setTimeout('n_new()', 1000);
    
