
var tickercontent2=new Array()
tickercontent2[0]='News<img src="common_3_img/loading.gif">'
tickercontent2[1]='Preparation of a Traffic Plan for the World Heritage Galle Fort.<br>This programme comprised the following activities :<br>•Identification of suitable locations and preparation of parking lots.<br>•Registration of trishaw drivers On 28th July 2010 they were issued identity cards by the Chairman of the Galle Heritage Foundation.<br>•Imposing limits such as one-way traffic and weight limits on specified roads.'
tickercontent2[2]='News<img src="common_3_img/loading.gif">'
tickercontent2[3]='The Galle Heritage Foundation has initiated a programme for the maintenance of the Galle Ramparts and open areas around the Ramparts, with the active support of the business community of Galle Fort.'
tickercontent2[4]='News<img src="common_3_img/loading.gif">'
tickercontent2[5]='A massive anti-dengue shramadana campaign was carried out by the Galle Heritage Foundation within  Galle Fort on 6th August 2010.  Over 300 participants from the Youth Ranger Centres of Bope and Akmeemana, employees of the Galle Municipal Council, the Central Cultural Fund and the Galle Heritage Foundation took part in a day long cleaning up operation.  The Trishaw Association of Galle Fort, the Director of Galle Fort Hotel Mr. Karl Steinberg and the residents of Galle Fort led by Miss Nalini Abeywardene and Mrs. Shariya Mohideen, Board Members of the GHF, extended their patronage in this event.'
tickercontent2[6]='News<img src="common_3_img/loading.gif">'
tickercontent2[7]='The GHF also carried out a special project to prune the harzardous branches of the big trees in the Fort, with the support of the Galle Municipal Council'
tickercontent2[8]='News<img src="common_3_img/loading.gif">'
tickercontent2[9]='Development of Infrastructure<br>The following projects have been carried out :<br>•Development of the surface drain behind Sudharmalaya Vihara <br>•Construction of a set of public lavatories <br>•Placing 11 specially designed bins at chosen locations in Galle Fort for light litter such as polythene . This project was carried out with the support of the business community of Galle Fort, led by Ms.Olivia Richli of Amangalla Hotel.'





































function domticker(content, divId, divClass, delay, fadeornot){
this.content=content
this.tickerid=divId 
this.delay=delay 
this.mouseoverBol=0 
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 
this.opacitysetting=0.2 
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 
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) 
setTimeout(function(){instanceOfTicker.rotatemsg()}, 100)
else{
this.fadetransition("reset") 
this.contentdiv.innerHTML=this.content[this.pointer]
this.fadetimer1=setInterval(function(){instanceOfTicker.fadetransition('up', 'fadetimer1')}, 100) 
this.pointer=(this.pointer<this.content.length-1)? this.pointer+1 : 0
setTimeout(function(){instanceOfTicker.rotatemsg()}, this.delay) 
}
}



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

