﻿var quotes=new Array()

//change the quotes if desired. Add/ delete additional quotes as desired.

quotes[0]='Чистата съвест е най-добрата възглавница'

quotes[1]='На зазоряване е най-тъмно'

quotes[2]='Утрото е по-мъдро от вечерта'

quotes[3]='Денят се познава по утрото'

quotes[4]='Усмихни се и ще ти се усмихнат'




var whichquote=Math.floor(Math.random()*(quotes.length))
document.write(quotes[whichquote])

