// JavaScript Document
<!--
quotes = new Array(20);
authors = new Array(20);
company = new Array (20);
quotes[0] = "I am thoroughly delighted with my new website!  HBWD put a lot into understanding my business and tailoring the website to our needs.  Helen was very easy to work with, very knowledgeable and I think most importantly, had a great can-do attitude to the whole project.  Highly recommended.";
authors[0] = "Margo Random";
company [0] = "Blueberry Playsongs";
quotes[1] = "Helen Bantock Web design have provided a first rate web design service, taking great care at each stage of its development to ensure it matched my exacting requirements.";
authors[1] = "Liz Webster";
company [1] = "G2 Designs";
quotes[2] = "Helen Bantock Web Design have given me the website that I was looking for. Easy to use, with a fresh clean look that both reflects my style and suits my identity.";
authors[2] = "Ruth Higham";
company [2] = "Quilter";
quotes[3] = "A fantastic personal and professional service. Helen Bantock Web Design was very efficient and really understood what we wanted to get out of our new website. They put our vague ideas about the site into a fantastic design. A real pleasure to work with. We highly recommend their service.";
authors[3] = "Helen West";
company [3] = "The Living Room";
quotes[4] = "Why use Helen Bantock Web Design?  Well, simply for the fact that they made the whole process easy. Helen is very easy to work with, she has good ideas and is very meticulous. We have a great web site and are extremely happy. Thank you to hbwd.";
authors[4] = "Julian Jones";
company [4] = "Ixora-Tobago";
quotes[5] = "In just a few weeks you put together exactly what I wanted - and more! Thanks to Helen Bantock Web Design for creating my fantastic website.";
authors[5] = "Linzi Upton";
company [5] = "The Quilt Quine";
quotes[6] = "I was impressed by the way that Helen had done her homework on our existing website and the business of patchwork and quilting. She was able to put her suggestions in a way that I could understand and in layman\'s terms. She incorporated our previous ideas and gently moved us away from anything that she felt would not be beneficial to us or the new website.";
authors[6] = "Isabel Paterson";
company [6] = "Loch Lomond Quilt Show";
quotes[7] = "Helen Bantock Web Design interpreted our brief and company identity with creativity and flair to produce a clear, cohesive, visitor-friendly site. We are delighted with the result.";
authors[7] = "Elspeth Montgomery";
company [7] = "Horticouture";
quotes[8] = "Huge thanks for all your help in getting the website up so quickly.  It\'s working very well and both our existing contacts and new-comers are finding the classes and signing up!";
authors[8] = "Ruth Higham ";
company [8] = "The Studio:";
quotes[9] = "Apart from the expertise at Helen Bantock Web Design, I found Helen such fun to work with. Her skill, knowledge and artistic eye behind her gently given advice led to my complete satisfaction with the result; as did her patience & care in working so hard at alternative layouts before our final decision. I sold my first paintings a few days after the web site opened.";
authors[9] = "Hazel Barclay";
company [9] = "Watercolour Painter";
quotes[10] = "HBWD very intelligently interpreted what we wanted, suggesting complementary ideas that enhanced the design. A great aesthetic eye \&amp; a very logical, refreshing way of approaching things.  Their patience is endless, sense of humour boundless and I would recommend them without hesitation.  The whole experience was totally painless, enjoyable, straight forward and creative.";
authors[10] = "PR Direct Ltd";
company [10] = "";
quotes[11] = "I thoroughly recommend Helen Bantock Web Design. This is the second time I have commissioned HBWD to do a website for our Charitable Trust.  They are great professionals and give an excellent personalised service. They make every effort to give you exactly what you require for your business.  I would certainly use Helen Bantock Web Design services again!";
authors[11] = "Jill Grainger";
company [11] = "Two by Two Trust";
quotes[12] = "HBWD have been great with our project. Helen provided a creative spark to our project and she seamlessly covers all facets of the design process and is more than willing to go the extra mile when required. Overall we are extremely satisfied with the look of our new website but also with the support we got after the launch\!";
authors[12] = "Lefteris Pardalakis";
company [12] = "Stavros Studios";
quotes[13] = "I asked Helen Bantock Web Design for a clear, easy to use great looking website and that is exactly what they have delivered - as well as supporting my business's changing needs when I moved abroad and needed a bilingual site.";
authors[13] = "Elisabet Agar";
company [13] = "Homeopath";
quotes[14] = "I couldn\'t recommend Helen Bantock Web Design more highly. Helen worked tirelessly to interpret my basic idea to achieve the logo and the overall site design. With the combined skills of technical know-how plus an excellent design eye she offers a very personal service. HBWD is a company which really cares about what they are doing. Fantastic!";
authors[14] = "Steph Cartwright";
company [14] = "Useful PR";
quotes[15] = "I have no hesitation in recommending HBWD's service.  Not only are they excellent value for money, but have provided intelligent \&amp; useful ideas when we were planning the site, which really helped.  All delivered with impressive efficiency and good humour, making it a fun experience.  I am delighted with my website, it has been instrumental in ensuring my business has got off to a flying start.";
authors[15] = "Jill Potter";
company [15] = "Victoria House";
quotes[16] = "Helen Bantock Web Design services is one of those rare services that offer a really personal service. Nothing is too much trouble and attention to detail is superb. I also found for every problem we brought to her, Helen had or found a solution. I have no hesitation in recommending this service on account of professionalism, prompt service, quality and cost";
authors[16] = "Lawrence Heasman";
company [16] = "Broadmead Church";
quotes[17] = "HBWD manage our website content on a regular basis....they are there for us when text, graphics or page design need more substantial or more holistic work and it\'s here that their interest in and understanding of our business adds real value. Their input is always excellent and we feel very lucky to have them";
authors[17] = "Janet Fillingham";
company [17] = "Janet Fillingham Associates";

quotes[18] = "HBWD offered an extremely efficient and effective service, Helen really understood what I wanted and her commitment to the brief was never ending. She is one of the few people that I have worked with in the past few years who pre-empted my requirements without me having to say anything. Helen is a pleasure to work with and I would recommend her to anyone";
authors [18] = "Jane Mackie";
company [18] = "Middleton of Rora";
quotes[19] = "Helen is a consummate professional who understood my idea from the basic concept of my website to the completed version. We had many meetings, all of which were extremely productive, as she listened to my frustrations of setting up a new business. She is trustworthy, reliable and at all times helpful. My literary consultancy is proving to be successful and this is largely due to the design of my website.";
authors [19] = "Shelley Instone";
company [19] = "Literary Consultancy";

//calculate a random index
index = Math.floor(Math.random() * quotes.length);

//display the quotation
document.write("<dt>" + "\"" + quotes[index] + "\"<br/><br/>"); 
document.write("<h5>" + "" + authors[index] + "\n");
document.write("<h6>" + "" + company[index] + "\n");
//-->
//You will need a separate style sheet for IE fixes when using headings and dt for layout //HBWD manage our website content on a regular basis. They originally designed the site for us to manage the day-to-day input and for the most part this works well. Thankfully our arrangement is that SOS requests are always attended to promptly and with dollops of humour and/or wonderful confidence-building. HBWD are also there for us when text, graphics or page design need more substantial or more holistic work and it’s here that their interest in and understanding of our business adds real value. Their input is always excellent and we feel very lucky to have them
