// ==UserScript==
// @name           Add random quip to VersionOne
// @namespace      http://[your versionone server]
// @include        http://[your versionone server]/*
// ==/UserScript==

function addScript(src)
{
    var script = document.createElement('script');
    script.src = src;
    var head = document.getElementsByTagName('head')[0];
    head.appendChild(script);
}

function init()
{
    addScript('[the location of this script]');
    addScript('[bugzilla URL]/randquip.cgi?action=getjs');
}

init();

