

//store the quotations in arrays

quotes = new Array(9);

authors = new Array(9);

quotes[0] = "[15 minutes media] were not only very professional, introduced significant improvements to the original product, exceeded our expectations in terms of product delivery, but they were also delightful and a pleasure to work with... <strong>I would strongly recommend 15 Minutes Media</strong> - they have the professional expertise, creativity and flexibility, and work great in stressful situations.";

authors[0] = "Rositsa Todorova, MDG Monitor Project Manager, United Nations Development Programme";

quotes[1] = "Our work together resulted in a site that people can recognize as me, rather than a marketing attempt done by a third party. <strong>I highly recommend 15 minutes media.</strong>";

authors[1] = "Eva Har-Even, Wise Leaders";

quotes[2] = "The email campaigns have saved us time and money and have also increased revenue. Karen is pleasant to deal with, reliable and creative. <strong>PWC highly recomends 15 minutes media.</strong>";

authors[2] = "Trish Giaquinto, Professional Women in Construction";

quotes[3] = "One of Karen's greatest traits is that she listens to her clients and doesn't deliver standard, off-the-shelf solutions. I would not only recommend Karen, <strong>I would definitely work with 15 minutes media on any digital product I might want to create</strong>.";

authors[3] = "Jackie Leo";

quotes[4] = "<strong>Working with 15 minutes media always goes so smoothly!</strong> Karen understands exactly what we need and executes each project quickly and just as we visualized it. 15 minutes media is a very professional operation.";

authors[4] = "Sarah Masters, Managing Director, Hartley Film Foundation";

quotes[5] = "Karen was an absolute joy to work with on our website project. Her timeliness and professionalism was extraordinary! <strong>She worked with us through the entire process as though she had a vested interest in our company</strong>, and had an 'If I can make you successful, we all win' mentality.";

authors[5] = "Cory Anderson, Showtime Golf";

quotes[6] = "Karen Propp has brought our website to a new level generating more business each day of every month. We've researched and worked with several SEO Marketing Firms and no one has gotten us close to where Karen has taken us. Her experience speaks volumes by her unique suggestions, her entrepreneurial ideas, and most of all the results we receive from our website. <strong>We are heads above the competition thanks to 15 minutes media</strong> and foresee staying there with them.";

authors[6] = "Ryan Van Der Vorst, Showtime Golf";

quotes[7] = "I have hired 15 minutes media to design a few websites for my business. Karen and 15 Minutes Media always deliver work that is highly functional, intuitive to navigate, and great to look at. I appreciate how cleanly her sites are built -- <strong>search engines favor the technical aspect of her design, and it's simple to make changes as my business evolves</strong>.";

authors[7] = "Johannah Haney, copywriter";

quotes[8] = "I hired Karen to give me advice on increasing traffic to my website; she gave me concise SEO and design pointers that drastically improved the searchability of the site, and a summary report of my site's standing in the Internet - and for a good price. <strong>I now have organic traffic where before I did not</strong>, and positive reviews of the site layout.";

authors[8] = "Mark Radoff, Liquid-CV";

//calculate a random index

index = Math.floor(Math.random() * quotes.length);



//display the quotation

document.write("<DL>\n");

document.write("<DT>" + "\"" + quotes[index] + "\"\n");

document.write("<DD>" + "-- " + authors[index] + "\n");

document.write("</DL>\n");



//done

