// JavaScript Document

var tickercontent=new Array()
tickercontent[0]='<p><strong>The perfect stay</strong></p><p>More like sharing a luxury home with friends than a B&B.</p><p>Fabulous house in acres of garden, food and accomodation cannot be faulted.</p><p> Brenda and Barry are genial and welcoming hosts.</p><p>Very highly recommended.</p><p>"mgpenthusiast"</p>'
tickercontent[1]='<p><strong>Is now in our Bank of Happy Memories</strong></p><p>To celebrate our Golden Wedding Anniversary, we decided to go back to the Isle of Man and to re-live some happy memories.</p><p>Where to start? ...... Tripadvisor, of course! ...... we weren\'t let down.</p><p>Brenda and Barry are excellent hosts and they warmly welcome you into their lovely home.</p><p>It is a haven of peace and quiet, with rabbits and pheasants roaming in the well tended gardens and the special breed hens are very quaint.</p><p>"Jjohnvmoore"</p>'
tickercontent[2]='<p><strong>Elegant rural bed and breakfast</strong></p><p>The guest lounge was very large with windows on 3 sides and antique furniture which suited the style of the house.</p><p> Breakfast was served in a smaller but airy dining room.</p><p>Breakfast included a beautifully presented fruit plate, eggs from the on-site free range hens, and Manx kippers.</p><p>We also appreciated tea and cake offered when we arrived or returned from a day out.</p><p>"Mathematica"</p>.'
tickercontent[3]='<p><strong>Can\'t better it!</strong></p><p>Just returned from a wonderful long weekend spent at Kerrowmoar.</p><p>Our parting comment in the Guest Book was that we felt like house guests, rather than paying customers. Brenda and Barry made us feel like part of the family.</p><p>The little touches (cold drinks on the lawn after arriving back from a hot day out, fresh flowers, lovely biscuits!) make the difference, as did the kind assistance with our very problematic car!</p><p>"NCombe"</p>.'
tickercontent[4]='<p><strong>Beautiful place, beautiful people!</strong></p><p>My mother (83) and I stayed at Kerrowmoar West for four days last week, and the holiday was unforgettable.</p><p>Brenda and Barry are lovely people, who enjoy having people to stay and do their utmost to make your holiday fantastic.</p><p>I will never forget sitting in their beautiful large secluded garden in the evenings with a jug of something iced, watching the almost tame rabbits on the grass, with the three hens wandering around, and pheasants appearing every now and then. Idyllic!</p><p>"Jeanthelibraryqueen"</p>.'

function domticker(content, divId, divClass, delay, fadeornot){
this.content=content
this.tickerid=divId //ID of master ticker div. Message is contained inside first child of ticker div
this.delay=delay //Delay between msg change, in miliseconds.
this.mouseoverBol=0 //Boolean to indicate whether mouse is currently over ticker (and pause it if it is)
this.pointer=1
this.opacitystring=(typeof fadeornot!="undefined")? "width: 100%; filter:progid:DXImageTransform.Microsoft.alpha(opacity=100); -moz-opacity: 1" : ""
if (this.opacitystring!="") this.delay+=500 //add 1/2 sec to account for fade effect, if enabled
this.opacitysetting=0.2 //Opacity value when reset. Internal use.
document.write('<div id="'+divId+'" class="'+divClass+'"><div style="'+this.opacitystring+'">'+content[0]+'</div></div>')
var instanceOfTicker=this
setTimeout(function(){instanceOfTicker.initialize()}, delay)
}

domticker.prototype.initialize=function(){
var instanceOfTicker=this
this.contentdiv=document.getElementById(this.tickerid).firstChild //div of inner content that holds the messages
document.getElementById(this.tickerid).onmouseover=function(){instanceOfTicker.mouseoverBol=1}
document.getElementById(this.tickerid).onmouseout=function(){instanceOfTicker.mouseoverBol=0}
this.rotatemsg()
}

domticker.prototype.rotatemsg=function(){
var instanceOfTicker=this
if (this.mouseoverBol==1) //if mouse is currently over ticker, do nothing (pause it)
setTimeout(function(){instanceOfTicker.rotatemsg()}, 100)
else{
this.fadetransition("reset") //FADE EFFECT- RESET OPACITY
this.contentdiv.innerHTML=this.content[this.pointer]
this.fadetimer1=setInterval(function(){instanceOfTicker.fadetransition('up', 'fadetimer1')}, 100) //FADE EFFECT- PLAY IT
this.pointer=(this.pointer<this.content.length-1)? this.pointer+1 : 0
setTimeout(function(){instanceOfTicker.rotatemsg()}, this.delay) //update container
}
}

// -------------------------------------------------------------------
// fadetransition()- cross browser fade method for IE5.5+ and Mozilla/Firefox
// -------------------------------------------------------------------

domticker.prototype.fadetransition=function(fadetype, timerid){
var contentdiv=this.contentdiv
if (fadetype=="reset")
this.opacitysetting=0.2
if (contentdiv.filters && contentdiv.filters[0]){
if (typeof contentdiv.filters[0].opacity=="number") //IE6+
contentdiv.filters[0].opacity=this.opacitysetting*100
else //IE 5.5
contentdiv.style.filter="alpha(opacity="+this.opacitysetting*100+")"
}
else if (typeof contentdiv.style.MozOpacity!="undefined" && this.opacitystring!=""){
contentdiv.style.MozOpacity=this.opacitysetting
}
else
this.opacitysetting=1
if (fadetype=="up")
this.opacitysetting+=0.2
if (fadetype=="up" && this.opacitysetting>=1)
clearInterval(this[timerid])
}
