function MakeArray(n)     
  {
             this.length = n;
             for (var i = 1; i <= n; i++)
          { 
                this[i] = 0 
         }            return this
   }
function Random2()   
 {      
       Ideas=new MakeArray(34)
       numIdeas=34
       Ideas[0] = "The achievements which society rewards are won at the cost of diminution of personality<br>C. G. Jung";
       Ideas[1] = "From the middle of life onward, only he remains vitally alive who is ready to die with life<br>C. G. Jung";
	   Ideas[2] = "Even a happy life cannot be without a measure of darkness; it is far better to take things as they come along with patience and equanimity<br>C. G. Jung";
	   Ideas[3] = "Everything that irritates us about others can lead us to an understanding of  ourselves<br>C. G. Jung";
	   Ideas[4] = "Knowledge rests not upon truth alone, but upon error also<br>C. G. Jung";
	   Ideas[5] = "The small world of the child, the family milieu, is the model for the big world. The more intensely the family sets its stamp on the child, the more he will be emotionally inclined, as an adult, to see in the great world his former small world. <br>C. G. Jung";
	   Ideas[6] = "The greatest mistake an analyst can make is to assume that his patient has a psychology similar to his own.<br>C. G. Jung";
	   Ideas[7] = "Medicine in the hand of a fool was ever poison and death. Just as we demand from a surgeon... a skilled hand... so we must expect from an analyst a very serious and thorough psychoanalytic training of his own personality. <br>C. G. Jung";
	   Ideas[8] = "If one does not understand a person, one tends to  regard him as a fool<br>C. G. Jung";
	   Ideas[9] = "To be human means to  feel inferior<br>A. Adler";
	   Ideas[11] = "To the man who only has a hammer, everything he  encounters begins to  look like a nail<br>-Maslow";
	   Ideas[12] = "Great talents are the most lovely and often the most dangerous fruits on the tree of humanity. They hang upon the most slender twigs that are easily snapped off.<br>C. G. Jung";
	   Ideas[13] = "Show me a sane man and I will cure him for you.<br>C.G. Jung";
	   Ideas[14] = "We cannot change anything until we accept it. Condemnation does not liberate, it oppresses.<br>C. G. Jung";
	   Ideas[15] = "Psychiatry is the care of the id by the odd. <br>Unknown";
	   Ideas[16] = "I cannot think of any need in childhood as strong as the need for a father's protection.<br> S. Freud ";
	   Ideas[17] = "There are two great injustices that can befall a child. One is to punish him for something he didn't do. The other is to let him get away with doing something he knows is wrong. <br>R. Gardner";
	   Ideas[18] = "When inspiration does not come to me, I go halfway to meet it. <br>Freud";
	   Ideas[19] = "Modern man thinks he loses something -- time -- when he does not do things quickly; yet he does not know what to do with the time he gains -- except kill it.<br>E. Fromm";
	   Ideas[20] = "A great many people think they are thinking when they are merely rearranging their prejudices. <br>W. James";
	   Ideas[21] = "Eternal  truth needs a  human language that alters with the spirit of the times. <br>C. G. Jung ";
       Ideas[22] = "You always become the thing you fight the most. <br>C. G. Jung";
	   Ideas[23] = "Nobody can fall so low unless he has a great depth... that is to say, this depth corresponds to a potential height, and the blackest darkness to a hidden light. <br>C. G. Jung";
	   Ideas[24] = "The real existence of an enemy upon whom one can foist off everything evil is an enormous relief to one's conscience. You can then at least say, without hesitation, who the devil is. <br>C. G. Jung";
	   Ideas[25] = "I once made the acquaintance of a very venerable personage - in fact, one might easily call him a saint. I stalked round him for three whole days, but never a mortal failing did I find in him. Then, on the fourth day, his wife came to consult me.... Well, nothing of the sort has ever happened to me since. <br>C. G. Jung";
	   Ideas[26] = "Unfortunately there can be no doubt that man is, on the whole, less good than he imagines himself or wants to be. Everyone carries a shadow, and the less it is embodied in the individual's conscious life, the blacker and denser it is. <br>C. G. Jung";
	   Ideas[27] = "How else could it have occurred to man to divide the cosmos... into a bright day-world and a dark night-world peopled with fabulous monsters, unless he had the prototype of such a division in himself? <br>C. G. Jung";
	   Ideas[28] = "Projections change the world into the replica of one's own unknown face. <br>C. G. Jung";
	   Ideas[29] = "Mistakes are, after all, the foundations of truth, and if a man does not know what a thing is, it is at least an increase in knowledge if he knows what it is not. <br>C. G. Jung";
	   Ideas[10] = "If there is anything that we wish to change in our children, we should first examine it and see whether it is not something that could better be changed in ourselves. <br>C. G. Jung";
	   Ideas[30] = "We may feel genuinely concerned about world conditions, though such a concern should drive us into action and not into a depression. <br>Karen Horney";
	   Ideas[31] = "Fortunately, analysis is not the only way to resolve inner conflicts. Life itself still remains a very effective therapist. <br>Karen Horney";
	   Ideas[32] = "There is no good reason why we should not develop and change until the last day we live. <br>Karen Horney";
	   Ideas[33] = "The perfect normal person is rare in our civilization. <br>Karen Horney";

     var now= new Date() 
     var sec= now.getSeconds()
     return Ideas[sec % numIdeas];
  }