<!-- 
var tickercontent=new Array()
tickercontent[0]='<a href="/news/">Link 1</a><br>.'
tickercontent[1]='<a href="/news/">Link 2</a><br>.'

var tickercontent2=new Array()
tickercontent2[0]='<a href="/greasley-gallery/">&#8250; <strong class="burgundy">4<sup>th</sup> June 2010:</strong> &nbsp;<strong>&quot;Visit the new look Greasley Gallery, featuring over 100 images from the Parish of Greasley.</strong> &nbsp;<span class="light">- Read more...</span></a>'
tickercontent2[1]='<a href="/greasley-globe/2010/06/greasley-sports-community-centre-open-day.html">&#8250; <strong class="burgundy">4<sup>th</sup> June 2010:</strong> &nbsp;<strong>&quot;OPEN DAY EVENT at Greasley Sports and Community Centre on Saturday, 19<sup>th</sup> June, 2010.</strong> &nbsp;<span class="light">- Read more...</span></a>'
tickercontent2[2]='<a href="/greasley-globe/2010/05/new-chairman-cllr-john-handley.html">&#8250; <strong class="burgundy">28<sup>th</sup> May 2010:</strong> &nbsp;<strong>&quot;PARISH COUNCILS ARE THE &#145;BEDROCK&#146; OF BRITISH DEMOCRACY&quot says new Chairman</strong> &nbsp;<span class="light">- Read more...</span></a>'
tickercontent2[3]='<a href="/greasley-globe/2010/05/the-cries-of-silent-men.html">&#8250; <strong class="burgundy">28<sup>th</sup> May 2010:</strong> &nbsp;<strong>&quot;THE CRIES OF SILENT MEN&quot; - A Community Play about the turbulent history of Beauvale Priory</strong> &nbsp;<span class="light">- Read more...</span></a>'
tickercontent2[4]='<a href="/greasley-globe/2010/05/play-in-park.html">&#8250; <strong class="burgundy">28<sup>th</sup> May 2010:</strong> &nbsp;<strong>PLAY IN PARK - Free Play for Youngsters at Beauvale</strong> &nbsp;<span class="light">- Read more...</span></a>'
tickercontent2[5]='<a href="/council/meetings-parish-council.html">&#8250; <strong class="burgundy">28<sup>th</sup> May 2010:</strong> &nbsp;<strong>SCHEDULED MEETINGS OF THE PARISH COUNCIL for 2010/11</strong> &nbsp;<span class="light">- Read more...</span></a>'
tickercontent2[6]='<a href="/council/members.html">&#8250; <strong class="burgundy">28<sup>th</sup> May 2010:</strong> &nbsp;<strong>MEMBERS OF THE PARISH COUNCIL updated</strong> &nbsp;<span class="light">- Read more...</span></a>'


/***********************************************
* DHTML Ticker script- © Dynamic Drive (www.dynamicdrive.com)
* This notice MUST stay intact for legal use
* Visit http://www.dynamicdrive.com/ for this script and 100s more.
***********************************************/

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])
}

//new domticker(name_of_message_array, CSS_ID, CSS_classname, pause_in_miliseconds, optionalfadeswitch)
//new domticker(tickercontent, "domticker", "someclass", 3000, "fadeit")
//document.write("<br>")
new domticker(tickercontent2, "domticker2", "someclass", 3500, "fadeit")

//-->
