//***************************************************************************//

//                              RANDOM QUOTE                                 //

//                                                                           //

//                             Brought To By                                 //

//                              THE HANGMAN                                  //

//                          The_Hangman@Hotmail.com                          //

//***************************************************************************//





function MakeArray(n) 

    { 

            this.length = n; 

            for (var i = 1; i <= n; i++) 

         { 

                this[i] = 0 

         }

            return this   



    }



function Random()

   {



       Ideas=new MakeArray(4)

         numIdeas=5

    

       Ideas[0] = "I will make the wilderness a pool of water and the dry land fountains of water<br>&nbsp;&nbsp;&nbsp;-- Isaiah 41:18"

       Ideas[1] = "For I will pour out water on the thirsty land and streams on the dry ground<br>&nbsp;&nbsp;&nbsp;-- Isaiah 44:3"

       Ideas[2] = "And let the one who is thirsty come; let the one who wishes take the water of life without cost.<br>&nbsp;&nbsp;&nbsp;-- Revelation 22:17"

       Ideas[3] = "He changes a wilderness into a pool of water and a dry land into springs of water<br>&nbsp;&nbsp;&nbsp;-- Psalm 107:35"

       Ideas[4] = "Blessed is the man who trusts in the Lord, whose confidence is in him. He will be like a tree planted by the water that sends out its roots by the stream. It does not fear when heat comes; its leaves are always green. It has no worries in a year of drought and never fails to bear fruit.<br>&nbsp;&nbsp;&nbsp;-- Jeremiah 17:7,8"

       

   

     var now= new Date()

     var sec= now.getSeconds()

        return Ideas[sec % numIdeas];

  }


