var currentdate = 0;
var core = 0;

function StringArray (n) {
  this.length = n;
  for (var i =1; i <= n; i++) {
    this[i] = ' ';

  }
}

text = new StringArray(60);
text[0] = "Verily Deeds depend upon intentions";
text[1] = "He who innovates something in this matter (religion) of   ours that is not of it (i.e. heresy) will have it rejected";
text[2] = "Everyone will be with those whom he loves";
text[3] = "A Muslim is the one who avoids harming   Muslims with his tongue and his hands";
text[4] = "And Muhajir (emigrant) is the one who gives up all that Allah has forbidden";
text[5] = "Prudence is totally good";
text[6] = "Fear Allah wherever you are";
text[7] = "Perform a good deed after an evil, this will cause to eliminate the evil";
text[8] = "Behave the people with good manners";
text[9] = "He who cheats is not one of us (Muslims)";
text[10] = "He who believes in Allah and the last day should either say (something) good or keep silent";
text[11] = "A Muslim should not interfere in things that do not concern him";
text[12] = "Verily, every good (deed) is a charity";
text[13] = "Purity is part of faith";
text[14] = "Save yourself from hell-fire even if by half a date (in charity)";
text[15] = "Verily, Muslims are brothers of one another";
text[16] = "Al-Haya (modesty) is a part of faith";
text[17] = "Religion is to be sincere";
text[18] = "Pay the deposit to him who Deposited it with you and do not betray him who betrayed you";
text[19] = "Beware of suspicion, as it is the most false form of speech";
text[20] = "A Miser is the one who does not say `Peace be upon him` when I am mentioned";
text[21] = "Religion is very easy";
text[22] = "Stay on the truth";
text[23] = "He, who advises for the good is similar (in rewards) to the doer of it";
text[24] = "O Allah, there is no life except the life of the hereafter";
text[25] = "The severer of kinship bonds will not enter Paradise";
text[26] = "Performance of good deeds avoids the evil ending";
text[27] = "If you are in doubt, do what you are sure of";
text[28] = "A nice word is a charity  (in reward)";
text[29] = "Beware of the invocation of someone unjustly treated, as there is no barrier between it and Allah";
text[30] = "The strong (Muslim)  is not he who wrestles, but he who controls himself when angry";
text[31] = "A Muslim is never allowed to stay angry with his brother for three days, because he who does that, then dies, will go to hell";
text[32] = "The more you keep silent, the more you are safe";
text[33] = "World is like a prison for a believer, while it is like Paradise for a disbeliever";
text[34] = "Live in this world as if you are stranger or a passer by";
text[35] = "The upper hand (donor's) is better than the lower (beggar's)";
text[36] = "Wealth never decreases due to charity";
text[37] = "If you are humble for the sake of Allah He will raise your position";
text[38] = "This world is ever-green and charming (But the hereafter is far better)";
text[39] = "The one who gives something to somebody, then takes it back, is just like a dog who eats it and vomits to eat it again";
text[40] = "Beware of miserliness, because it caused destruction to those before you";
text[41] = "He, who shows neither mercy to the youngsters nor respects the elders is not one of us";
text[42] = "Wealth is not the possession of many goods, rather, the (actual) wealth is the self-contentment";
text[43] = "Be honest in your gatherings (i.e., neither backbite others, nor disclose their secrets)";
text[44] = "Everything that intoxicates is haram (forbidden)";
text[45] = "A slanderer will not be allowed to enter Paradise";
text[46] = "Charity in secrecy cools down Allah wrath (i.e., pleases him)";
text[47] = "There is a remedy for every disease";
text[48] = "Beware of injustice as it will cause the darkness (i.e., wastage of good deeds on the Day of Resurrection)";
text[49] = "Many people overlook the two graces: health and leisure time";
text[50] = "Each of you is guardian and responsible for his wards and the things under his care";
text[51] = "Spread Salaam (greetings) so as to enter Paradise safely";
text[52] = "Worship the All-gracious (Allah) and offer food (to the poor)";
text[53] = "Do not eat food with the left hand as the Satan does so";
text[54] = "Do not go in one shoe";
text[55] = "Do not abuse the wind";
text[56] = "Do not abuse the dead";
text[57] = "Do not spy (on Muslim brothers)";
text[58] = "The dearest deed to Allah is that which is done regularly, though it is less";
text[59] = "And verily the results are decided by the last actions";

var currentdate = new Date();
var core = currentdate.getSeconds() % text.length;
var rantext  = text[core];

document.write(rantext);