
<!-- Begin
var how_many_ads = 4;
var now = new Date()
var sec = now.getSeconds()
var ad = sec % how_many_ads;
ad +=1;

if (ad==1) {
txt="Jason Winter";
quote1="An excellent eye for a photograph, Andrew’s images";
quote2="really do sell your business. I thouroughly recommend";
quote3="Andrew's Work to anyone who wants great images";
name="J Winter";
}
if (ad==2) {
txt="Dorothy Warburton";
quote1="Wow, the photographs of the Guest house are fantastic!";
quote2="Thank you so very much! If these don't sell the rooms";
quote3="nothing will! Thank you!!";
name="D Warburton";
}
if (ad==3) {
txt="Jason Winter";
quote1="Andrew goes out of his way to ensure";
quote2="that the idea in your head is ultimately";
quote3="expressed by photographs";
name="J. Williams";
}
if (ad==4) {
txt="Robert Jones";
quote1="We have worked with Andrew on many projects";
quote2="over the years and have always been pleased";
quote3="with Andrew’s great work  and presentation";
name="R Jones";
}
document.write('<div class=\"quote\">&quot;' + quote1 + '<br>' + quote2 + '<br>' + quote3 );
document.write('&quot;</div>')
document.write('<div class="qname"> ' + name + '</div> ');
// End -->



