<!--
/*
randomtext.js
*/
// declare variables
show_text = new Array();
number_of_comments = -1;
// data
number_of_comments ++;
show_text[number_of_comments] = "\"Sam & I would like to say a big thank you for all your hard work doing all the flowers and cake for Rachael and Ross’s wedding.  The bouquets, buttonholes and cake were all beautifully done and the guests all remarked on how lovely all the flowers were... Heidi once again, a very big thank you!\"";

number_of_comments ++;
show_text[number_of_comments] = "\"Heidi is very professional and produces such beautiful flowers, very good value for money. Love and attention to detail was very much a characteristic, have recommended The Flower Studio onto others.\"<br /><br />Many thanks Michele";

 
number_of_comments ++;
show_text[number_of_comments] = "\"Not only were the flowers perfect for Mothers day, they also gave my little daughters some flowers as well. It's a rarity today to get such a personal service\"<br /><br />T. Harrison"; 

 
number_of_comments ++; 
show_text[number_of_comments] = "\"Excellent shop, staff could not do enough for you and were very passionate about products. Displays were exciting and dynamic, more contemporary than traditional which I liked a lot. However, excellent traditional arrangements on display as well.\"<br /><br />Eunice Whelan";

 
number_of_comments ++;
show_text[number_of_comments] = "\"Very many thanks for the arrangement of beautiful flowers!\"<br /><br />Ramsey Baptist Church\"";

number_of_comments ++;
show_text[number_of_comments] = "\"Thanks very much for doing the wonderful flowers and at such short notice! My Gran would have loved them! Best wishes, \<br />\<br />Ali, Julie & the Bell family\"";

number_of_comments ++;
show_text[number_of_comments] = "\"Heidi, you please every time with your flower arrangements, they are stunning & original every time!  You create seemingly effortless; beauty, style and elegance.\"";

number_of_comments ++;
show_text[number_of_comments] = "\"Thank you so much for the amazing job you did for our wedding, it really made everything look so special\""; 

number_of_comments ++;
show_text[number_of_comments] = "\"Thank you so much for all your help with our wedding flowers.  Everybody was blown away by the centrepieces and it made our wedding feel 'professionally homemade'.  We couldn't have wished for a better florist!\"";

number_of_comments ++;
show_text[number_of_comments] = "\"Thank you so very much for making my wedding day so special.  My flowers were so beautiful, I could not stop looking at them.\"";

number_of_comments ++;
show_text[number_of_comments] = "\"Thank you so much for the beautiful table arrangements you delivered for the lunch last Saturday... they were much admired and certainly played a part in a very successful day.\"";

number_of_comments ++;
show_text[number_of_comments] = "\"Thanks for a lovely evening, my Christmas wreath looks fab on my front door, <br />Barbara, Christmas workshop attendee \"";

number_of_comments ++;
show_text[number_of_comments] = "\"With many thanks for our fantastic flowers- the bouquet was fabulous! Absolutely perfect!,<br /> Juliette \"";

// make random number
var randomnumber=Math.floor(Math.random()*number_of_comments +1);

// didplay text
function show_comment()
{
//alert(show_text[randomnumber] + " " + randomnumber);
document.write(show_text[randomnumber]);
}


// -->