function randomSpotlight() {
    var spotlights = new Array();

    // Probabilities have been adjusted.
    spotlights.push('lane-harder.html');
    spotlights.push('j-eric-schmidt.html');
    spotlights.push('dan-lazarescou.html');
    spotlights.push('crazy-pig.html');
    spotlights.push('magen-miller.html');
    spotlights.push('referrals.html');
    spotlights.push('referrals.html');
    spotlights.push('i-become-gilgamesh.html');
    spotlights.push('gary-smart.html');
    spotlights.push('john-winsor.html');
    spotlights.push('alec-schumacker.html');
    spotlights.push('annette-jaffe.html');
    spotlights.push('ilona-don.html');
    spotlights.push('nothing-but-illusion.html');
    spotlights.push('what-music-is.html');
    spotlights.push('ari-sussman.html');

    var i = Math.round(Math.random() * 1000) % spotlights.length;

    $("#spotlight").load('/spotlight/rotation/' + spotlights[i]);
}

$(document).ready(function() {
    randomSpotlight();
});

