/*
 * Randomly selects a slogan and prints it out.
 * To add new slogans just add an entry to the 
 * list as appropriate.
 *
 * Author: Rhys Elsworth
 * Version: 22/06/06
 */

/*** List of slogans, edit this only! ***/
var slogans = new Array();
slogans[0] = "Supplying the Whole Package";
slogans[1] = "More than Just Boxes";


/*** Randomly selecting code, nothing to edit here ***/
var size = slogans.length;
var index = Math.floor(Math.random()*size);
document.write(slogans[index]);
