rotating_text('m', 1);function rotating_text(intv, n){ var k = 4; var h_text = Array(k); var dt = new Date(); 
h_text[0] = "Ask not that you be loved<br/>But ask that you be worthy of love..."; 
h_text[1] = "Happiness is found in the little things in life."; 
h_text[2] = "Think big.<br>Accept the small."; 
h_text[3] = "Never stop dreaming."; 
h_text[4] = "Love is central to the purpose of life."; 
h_text[5] = "Meditation fills us with peace & serenity."; 
h_text[6] = "Share with others to add meaning to your life."; 

switch(intv) {  case 'd':   x = dt.getDate();  break;  case 'h':   x = dt.getHours();  break;  case 'm':   x = dt.getMinutes();  break; } document.write(h_text[(x * n) % k]);}