var quotations = new Array()
quotations[0]= "I have been using Fair and Handsome for quite some time and would like to tell you that within 15 days the color tone of my skin has become light and my face is glowing like never before. Thank you Fair and Handsome for the same.<br><b>Ganesh Amola, Mumbai</b></br>"
quotations[1]= "The company has a good amount of goodwill and hence the products must be result oriented.<br/><b>Jeffrey Santos, Philippines</b>"
quotations[2]= "This cream is a very helpful for me. Because, before use this cream my   skin is very hard and rough. But after use this cream my skin is very   soft and really fair. So, I am satisfied for use this cream.<br/><b>Daniel Bean, New Zealand</b>"
quotations[3]= "It must be a product that enhances the personality of a man by bringing   the charm and freshness on the face. That on the whole turns the life of   a man in his personal and professional life.<br/><b>William Brown, UK </b>"
quotations[4]= "When my friend started using this cream he told me that is good and we   can use it  is good after using this our face will be like a handsome   guy.when i came to know about this i thought i should also try it .<br/><b>Haifa Martin, Africa</b>"
quotations[5]= "I think that emami is good compared to other creams. emami has the good   and appreciating idea is that for men it intorduces face cream it is   very great.<br/><b>Harry Smith, UK</b>"
function display()
{
a=Math.floor(Math.random()*quotations.length)
document.getElementById('quotation').innerHTML=quotations[a]
setTimeout("display()",3000)
return true;
}
