// JavaScript Document
var quotes = new Array;
quotes.push("Hey There!");
quotes.push("Welcome!");
quotes.push("Hey!");
quotes.push("Welcome to my site!");
quotes.push("Bonjur! I mean... Hello!");
quotes.push("Hi!");
document.write(quotes[(Math.floor(Math.random() * quotes.length))]);