// JavaScript Document


var quotes = [
'Salescore’s SCORE10™ methodology is incredibly effective, and we now use it for all sales activities<p>Colin Judd, Sales Director, InterNETalia</p>',
'Salescore’s SCORE10™ system is a breath of fresh air, direct, pragmatic and winning<p>Colin Judd, Sales Director, InterNETalia</p>',
'Salescore provided us with excellent training using the SCORE10™ methodology<p>Dan Whitelock, Director, Absolute Creative Marketing</p>',
'Salescore’s training helped us deliver a winning pitch against tough competition<p>Chris Nyland, Director, Absolute Creative Marketing</p>',
'The SCORE10™ approach helped us secure new business quickly<p>Dan Whitelock, Director, Absolute Creative Marketing</p>',
'We recommend the SCORE10™ programme to anyone looking to improve their sales techniques<p>Chris Nyland, Director, Absolute Creative Marketing</p>'

];

function randomizer (a_items, n_count) {
    var n_index, s_html = '';
    while (a_items.length && n_count) {
        n_index = Math.ceil(Math.random() * a_items.length) - 1;
        s_html += '' + a_items[n_index] + '';
        a_items[n_index] = a_items[a_items.length - 1];
        a_items.length = a_items.length - 1;
        n_count--;
    }
    return s_html + '</ul>';
}

