function GiftshopP(Pict){
        var Picture = new Array();
        Picture[0]="<img src='DSC02155.JPG' width=200 border=6 alt='Gift Shop'><br><center><b>Gift Shop";
        Picture[1]="<img src='CRW_4727-small.jpg' width=200 border=6 alt='Gift Shop'><br><center><b>Gift Shop";
        Picture[2]="<img src='CRW_4731-small.jpg' width=200 border=6 alt='Gift Shop'><br><center><b>Gift Shop";
        var Giftshop = Picture[Pict];
        return Giftshop;
        }
function Rand5(){
        var Time = new Date();
        var Seconds = Time.getSeconds();
        var Rnum = Seconds % 3;
        return Rnum;
        }
var RandValue = Rand5();
var GiftshopPict = GiftshopP(RandValue);
document.write(GiftshopPict);

