//Array function

function makeArray(len) {
	for (var i = 0; i<len; i++) this[i] = null;
this.length = len;
}

//Array of quotes
// change makearray number to equal number of quotes. quote numbers should start with zero
// quotes sould also be enclosed in single quotes

var quote = new makeArray(26);

quote[0] = 'I can highly recommend taking the real estate course offered by Dale Washburn.';

quote[1] = 'I found the course loaded with information and interesting';

quote[2] = 'Dale shows sincere concern for his students';

quote[3] = 'Dale...relates the rules and regulations to actual situations he has experienced right here in Middle Georgia';

quote[4] = 'I must say that the advice Dale teaches in his course definitely helped play a part in my success.';

quote[5] = 'I think you will find Dale\'s courses most rewarding!';

quote[6] = 'Not only are his [Dale\'s] classes educational but they are fun and enjoyable.';

quote[7] = '[Dale is] an instructor who is not only knowledgable but also creates a great & fun learning environment.';

quote[8] = '[Dale] is passionate about educating real estate agents so they are educated about the process and can serve their clients to the fullest.';

quote[9] = 'I valued most the stories Dale shared of actual experiences. He related text book examples to real life.';

quote[10] = 'Never a dull moment! Always interesting.';

quote[11] = 'Great teacher! Great Communicator.';

quote[12] = 'Mr. Washburn is an excellent teacher.';

quote[13] = 'Very good Instructor, informative, interesting.';

quote[14] = 'Great Instructor.';

quote[15] = 'Very good Instructor ! Good at teaching it and helping you understand it all!';

quote[16] = 'Wonderful!';

quote[17] = 'Mr. Washburn made learning fun and his knowledge of Real Estate is amazing.';

quote[18] = 'Awesome!';

quote[19] = 'Dale Washburn has made what would have been a very boring class fun with much participation of the class.';

quote[20] = 'He allows time for clarification of any issue or question we had.';

quote[21] = 'Very informative, can \"paint a very clear picture\" for illustrative purposes.';

quote[22] = 'Have a class with Dale Washburn was a MUCH better choice for me than taking it online. I HIGHLY recommend Dale!';

quote[23] = 'I can highly recommend taking the real estate course offered by Dale Washburn.';

quote[24] = 'I not only found the course loaded with information and interesting, but highly entertaining and enjoyable.';

quote[25] = 'Not only are his classes educational but they are fun and enjoyable.';




//random number generator

function rand(n) {
seed = (0x015a4e35 * seed) % 0x7fffffff;
return (seed >> 16) % n;
}
var now = new Date()
var seed = now.getTime() % 0xfffffff
document.write(quote[rand(quote.length)])

