// Layton-James Associates Ltd javascript library
// Copyright 2001-2004 Layton-James Associates Ltd. All Rights Reserved
// File Author: phpdev@layton-james.co.uk

function displayRandomImage(){
var aRandImages=new Array(15)
    aRandImages[1]="/_global/random/random_quote1.gif"
    aRandImages[2]="/_global/random/random_quote2.gif"
    aRandImages[3]="/_global/random/random_quote3.gif"
    aRandImages[4]="/_global/random/random_quote4.gif"
    aRandImages[5]="/_global/random/random_quote5.gif"
    aRandImages[6]="/_global/random/random_quote6.gif"
    aRandImages[7]="/_global/random/random_quote7.gif"
    aRandImages[8]="/_global/random/random_quote1.gif"
    aRandImages[9]="/_global/random/random_quote2.gif"
    aRandImages[10]="/_global/random/random_quote3.gif"
    aRandImages[11]="/_global/random/random_quote4.gif"
    aRandImages[12]="/_global/random/random_quote5.gif"
    aRandImages[13]="/_global/random/random_quote6.gif"
    aRandImages[14]="/_global/random/random_quote7.gif"
    aRandImages[15]="/_global/random/random_quote1.gif"
var y=Math.round(Math.random()*15)
if (y==0) y=1
if (y>14.5) y=15
document.write('<img src="'+aRandImages[y]+'" border=0 name="image" width="398" height="86" alt="random quote">')
}
displayRandomImage()