var delay=5000 //set delay between message change (in miliseconds)
var fcontent=new Array()
begintag='<font face="Verdana" size=2>' //set opening tag, such as font declarations
fcontent[0]="<I>&quot;Well, we really did have Music at Leisure!   What a wonderful weekend it was at The Swan: masterful playing by Piers, an enjoyable Music Quiz by Leonard, and a marvellous ending with Camilla's Harp Concert on the Barge.   Thank you so much.&quot;<br>S&amp;TS</I>"
fcontent[1]="<I>&quot;What a wonderful Streatley Easter weekend we have just had - thankyou.   It was a very relaxing and a very happy atmosphere.&quot;<br>HH</I>"
fcontent[2]="<I>&quot;I enjoyed the weekend at Hythe very much indeed.   A good number of people and a great atmosphere.&quot;<br>MG</I>"
fcontent[3]="<I>&quot;Just wanted to tell you how much we enjoyed the M@L weekend at Hythe....a wonderful view of the sea from the bedroom...glad to learn that M@L will be making a return visit next February.&quot;<br>SD</I>"
fcontent[4]="<I>&quot;Thank you for a wonderful weekend.&quot;<br>JG</I>"
fcontent[5]="<I>&quot;We wish to thank you and Peter for the many excellent weekends we have spent in your company over the last nearly twenty years!&quot;<br>O&amp;BC</I>"
fcontent[6]="<I>&quot;Thank you again for a great weekend.&quot;<br>NC</I>"
fcontent[7]="<I>&quot;A great way to enjoy fine music, meet interesting people and have a break too.&quot;<br>CC</I>"
fcontent[8]="<I>&quot;An opportunity to don black tie or party frock, dine well and meet fine musicians in delightful company.&quot;<br>M&amp;RS</I>"
fcontent[9]="<I>&quot;Often arriving at the last moment under considerable stress, it is amazing just how quickly one relaxes listening to superb music professionally played.&quot;<br>MG</I>"
fcontent[10]="<I>&quot;Enchanting entertainment, exceptional dining and a great atmosphere.&quot;<br>BB-P</I>"
fcontent[11]="<I>&quot;Excellent food, copious champagne and wine among splendid, often hilarious company complete the hedonism.   And it all starts again at breakfast!&quot;<br>D&amp;AP</I>"
fcontent[12]="<I>&quot;My lasting memory is of a very happy and fun weekend in great company. Thoroughly spoiling.&quot;<br>BB-P</I>"
fcontent[13]="<I>&quot;Excellent hotel locations plus food and wine to match, make these events a pleasure to look forward to and later, to remember with relish.&quot;<br>M&amp;RS</I>"
fcontent[14]="<I>&quot;The delightful thing about Music at Leisure is that you somehow immediately feel like a guest rather than a customer. We felt enfolded among friends.&quot;<br>BC</I>"
fcontent[15]="<I>&quot;It is such a special privilege when top musicians play wonderful music in really intimate surroundings - and then dine with us afterwards.&quot;<br>D&amp;AP</I>"
fcontent[16]="<I>&quot;It is amazing just how quickly one relaxes  in the company of like-minded people accompanied by good food and wine in a carefully selected location, then returning home feeling stimulated and refreshed.&quot;<br>MG</I>"
fcontent[17]="<I>&quot;It's well organised in that quiet way that means lots of effort behind the scenes but no sense of being ordered about.&quot;<br>CC</I>"
fcontent[18]="<I>&quot;A Music at Leisure weekend is a unique experience, akin to a country house party.&quot;<br>M&amp;RS</I>"
fcontent[19]="<I>&quot;Looking forward to the next perfectly organised weekend.&quot;<br>MG</I>"
fcontent[20]="<I>&quot;Just wanted to say how pleased I was to be at the Music at Leisure weekend.   These are very special events and I'm always glad when I can fit one into my travel schedule.&quot;<br>JM (Canada)</I>"
fcontent[21]="<I>&quot;Well, we really did have Music at Leisure!   What a wonderful weekend it was at The Swan: masterful playing by Piers, an enjoyable Music Quiz by Leonard, and a marvellous ending with Camilla's Harp Concert on the Barge. Thankyou so much. &quot;<br>S&amp;TS</I>"
fcontent[22]="<I>&quot;The Manager and staff seemed to excel in all respects, especially the meals provided by the Chef and his colleagues, not to mention the champagne!&quot;<br>GR</I>"
fcontent[23]="<I>&quot;What a wonderful Streatley Easter weekend we have just had - thank you.   It was a very relaxing and a very happy atmosphere. &quot;<br>HH</I>"
fcontent[24]="<I>&quot;What a lovely time I had at Easter!   M@L lived right up to expectations, just as I remembered it, and Emma (Johnson) was sensational&quot;<br>JT (New Zealand)</I>"



closetag='</font>'

var fwidth='300px' //set scroller width
var fheight='50px' //set scroller height

var fadescheme=0 //set 0 to fade text color from (white to black), 1 for (black to white)
var fadelinks=1  //should links inside scroller content also fade like text? 0 for no, 1 for yes.

///No need to edit below this line/////////////////

var hex=(fadescheme==0)? 255 : 0
var startcolor=(fadescheme==0)? "rgb(255,255,255)" : "rgb(0,0,0)"
var endcolor=(fadescheme==0)? "rgb(0,0,0)" : "rgb(255,255,255)"

var ie4=document.all&&!document.getElementById
var ns4=document.layers
var DOM2=document.getElementById
var faderdelay=0
var index=0

if (DOM2)
faderdelay=2000

//function to change content
function changecontent(){
if (index>=fcontent.length)
index=0
if (DOM2){
document.getElementById("fscroller").style.color=startcolor
document.getElementById("fscroller").innerHTML=begintag+fcontent[index]+closetag
linksobj=document.getElementById("fscroller").getElementsByTagName("A")
if (fadelinks)
linkcolorchange(linksobj)
colorfade()
}
else if (ie4)
document.all.fscroller.innerHTML=begintag+fcontent[index]+closetag
else if (ns4){
document.fscrollerns.document.fscrollerns_sub.document.write(begintag+fcontent[index]+closetag)
document.fscrollerns.document.fscrollerns_sub.document.close()
}

index++
setTimeout("changecontent()",delay+faderdelay)
}

frame=20;

function linkcolorchange(obj){
if (obj.length>0){
for (i=0;i<obj.length;i++)
obj[i].style.color="rgb("+hex+","+hex+","+hex+")"
}
}

function colorfade() {	         	
// 20 frames fading process
if(frame>0) {	
hex=(fadescheme==0)? hex-12 : hex+12 // increase or decrease color value depd on fadescheme
document.getElementById("fscroller").style.color="rgb("+hex+","+hex+","+hex+")"; // Set color value.
if (fadelinks)
linkcolorchange(linksobj)
frame--;
setTimeout("colorfade()",20);	
}

else{
document.getElementById("fscroller").style.color=endcolor;
frame=20;
hex=(fadescheme==0)? 255 : 0
}   
}

if (ie4||DOM2)
document.write('<div id="fscroller"></div>')

window.onload=changecontent
