﻿// JScript File
//==============================================================================================
// Programming Session
//==============================================================================================
//-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
//Do not modify this box
//-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
var numberOfQuote1 = 1;
var numberOfQuote2 = 1;

var numberOfPhoto1 = 1;
var numberOfPhoto2 = 1;

var quotes = new Array(2);
quotes[0] = new Array(numberOfQuote1);
quotes[1] = new Array(numberOfQuote1);

var photoUrls = new Array(2);
photoUrls[0] = new Array(numberOfPhoto1);
photoUrls[1] = new Array(numberOfPhoto2);

var photoAltText = new Array(2);
photoAltText[0] = new Array(numberOfPhoto1);
photoAltText[1] = new Array(numberOfPhoto2);

function TakeAction() {
    var d = new Date();
    var i = d.getTime() % numberOfQuote1;
    var j = d.getTime() % numberOfQuote2;
    var objQuote1 = getElmById("quote1");
    var objQuote2 = getElmById("quote2");
    if (objQuote1 != null) { objQuote1.innerHTML = quotes[0][i]; }
    if (objQuote2 != null) { objQuote2.innerHTML = quotes[1][j]; }
    
    i = i % numberOfPhoto1;
    j = j % numberOfPhoto2;
    var photo1 = getElmById("quotesphoto1");
    var photo2 = getElmById("quotesphoto2");
    if (photo1 != null) { 
        photo1.src = photoUrls[0][i]; 
        if (photoAltText[0][i] != null) {
            photo1.alt = photoAltText[0][i]; 
        }
    }
    if (photo2 != null) { 
        photo2.src = photoUrls[1][j]; 
        if (photoAltText[1][j] != null) {
            photo2.alt = photoAltText[1][j]; 
        }
    }
    
}
//-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
//==============================================================================================




//==============================================================================================
// User editing session
//==============================================================================================

//----------------------------------------------------------------------------------------------
// Declare Number of Quotes
//----------------------------------------------------------------------------------------------
//Quotes
numberOfQuote1 = 1;
numberOfQuote2 = 21;

//Photos
numberOfPhoto1 = 1;
numberOfPhoto2 = 2;

//----------------------------------------------------------------------------------------------
//Declare your quotes under this line 
// Noted:   
//      + Quote 1 always has the name quotes[0][...]
//      + Quote 2 always has the name quotes[1][...]

//----------------------------------------------------------------------------------------------

//Declare quotes for first box here
quotes[0][0] = 'RITZ CARLTON LAGUNA NIGUEL The Hospitality School has many alliances with resorts and hotels in Orange County including the Ritz Carlton Laguna Niguel.';

//Declare quotes for second box here
quotes[1][0] = '"Talent is what you possess; genius is what possesses you." -Malcolm Cowley ';
quotes[1][1] = '"You are a potential genius; there is no problem you cannot solve, and no answer you cannot find somewhere." -Brian Tracy';
quotes[1][2] = '"A thoroughbred horse never looks at the other horses. It just concentrates on running the fastest race it can."  -Henry Fonda';
quotes[1][3] = '"Freedom requires that we learn and put into practice the three Rs - Respect, Responsibility and Restraint." -Fr. Brian Cavanaugh';
quotes[1][4] = '"A good heart is better than all the heads in the world." -Edward G. Bulwer-Lytton';
quotes[1][5] = '"Men show their character in nothing more clearly than what they think laughable." -Johann Wolfgang von Goethe';
quotes[1][6] = '"You are not very good if you are not better than your best friends imagine you to be." -Johann Kaspar Lavater';
quotes[1][7] = '"Character is much easier kept than recovered." -Thomas Paine';
quotes[1][8] = '"Of the events of life we may have some control, but over the law of its progress none." -John W. Draper';
quotes[1][9] = '"Everything changes, nothing remains without change." -Buddha';
quotes[1][10] = '"Be the change you want to see in the world." -Mahatma Gandhi';
quotes[1][11] = '"When you are finished changing, you are finished." -Benjamin Franklin';
quotes[1][12] = '"The only competition you will ever have is the competition between your disciplined and undisciplined mind." -James A. Ray';
quotes[1][13] = '"A dream is your creative vision for your life in the future." -Denis Waitley';
quotes[1][14] = '"The world is moving so fast these days that the man who says it can not be done is generally interrupted by someone doing it." -Harry Emerson Fosdick';
quotes[1][15] = '"You can preach a better sermon with your life than with your lips." -Oliver Goldsmith';
quotes[1][16] = '"We love and respect consistency in ourselves and other—and we loathe inconsistency." -Tony Jeary';
quotes[1][17] = '"Commitment does not guarantee success, but lack of commitment guarantees you will fall far short of your potential." -Denis Waitley';
quotes[1][18] = '"You can make more friends in two months by becoming interested in other people than you can in two years by trying to get other people interested in you." -Dale Carnegie';
quotes[1][19] = '"A decision is made with the brain. A commitment is made with the heart. Therefore, a commitment is much deeper and more binding than a decision." -Nido Qubein';
quotes[1][20] = '"The success of our efforts depends not so much on the efforts themselves, but rather on our motive for doing them." -Denis Waitley';


//----------------------------------------------------------------------------------------------
//Declare your quote's photo url and alternative text under this line 
// Noted:   
//      + Photo box 1 always has the name photoUrls[0][...]
//      + Alternative text of photo box 1 always has the name photoAltText[0][...]
//      + Photo box 2 always has the name photoUrls[1][...]
//      + Alternative text of photo box 2 always has the name photoAltText[1][...]
//----------------------------------------------------------------------------------------------

//Declare photoUrls for first box here
photoUrls[0][0] = '/NR/rdonlyres/120F2641-D828-4870-97C2-4CDAAA0E240A/0/partnerships_06.jpg';

//Alternative text for first box here
photoAltText[0][0] = 'Great partnership';

//Declare photoUrls for second box here
photoUrls[1][0] = '/NR/rdonlyres/CDA163A9-6B5A-4DFA-B800-A276578D58BC/0/inspiration_05.jpg';
photoUrls[1][1] = '/NR/rdonlyres/120F2641-D828-4870-97C2-4CDAAA0E240A/0/partnerships_06.jpg';

//Alternative text for first box here
photoAltText[1][0] = '';
photoAltText[1][1] = '';

//----------------------------------------------------------------------------------------------

//==============================================================================================
// End of user editing session
//==============================================================================================








//==============================================================================================
// Programming Session
//==============================================================================================
//-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
//Do not modify this box
//-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
TakeAction();
//-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
//==============================================================================================

