﻿$(function() {
var myPix = new Array("images/HomeRand1.jpg","images/HomeRand2.jpg","images/HomeRand3.jpg","images/studious.png");
var myQuotes = new Array("Getting my real estate license through CCREA was quick and easy! The evening classes were perfect for my work schedule and I loved that it only took 6 weeks instead of an entire semester.","Teri was a fantastic instructor. Her real life examples helped me understand the concepts we were reviewing in class. Thanks, Teri!","After being out of school for so many years, I was nervous to start classes to get my real estate license. The folks at CCREA put me at ease right away and now I'm excited to start my new career in Real Estate Sales!","After 20 years with the same job, I was ready for a career change. CCREA helped me get my license and get started in a real estate career in less than two months!");
$('#randomPicture').hide();

	var randomNum = Math.floor((Math.random() * myPix.length));
	var randomQuote = Math.floor((Math.random() * myQuotes.length));
	$('#myPicture').attr("src", myPix[randomNum]);
	$('#randomPicture').show();
	$('#myQuote').append(myQuotes[randomQuote]);
});

	
