
/*Example message arrays for the two demo scrollers*/

var tickercontent=new Array()
tickercontent[0]='<span class="Title_news"><br /><center><a href="#"><img src="images/grad_news.jpg" width="92" height="48" border="1" /><br />Graduation Ceremony 2007-2008</a></center></span>'
tickercontent[1]='<span class="Title_news"><a href="bd_ink_en.php"><img src="images/bd.png" border="0" vspace="5" align="right" />DM, University of Dubai&nbsp;&nbsp;Ink Cooperation Agreement</a></span><p class="bodyText_news">Dubai Municipality and the University of Dubai have signed a cooperation agreement on Monday that seeks to <a href="bd_ink_en.php">more...</a></p>'
//tickercontent[2]='<span class="Title_news">Title</span><p class="bodyText_news"><img src="images/du.png" width="73" height="71" vspace="5" align="right" />University of dubai unn  oiewtyu hsdj h jh jh yqweuiqyw University of dubai un dkfjgl kldj dfkgj  wkejkj  <a href="#">more...</a></p>'

var tickercontent2=new Array()
tickercontent2[0]='<span class="Title_news"><a href="" onclick="window.open(\'abet.php\',\'\',\'menubar=no,dep=no,resizable=no,scrollbars=no,status=no,width=520,height=400\');"><img src="images/ABET.png" border="0" vspace="5" align="right" />Accreditation Board for Engineering and Technology</a></span><p class="bodyText_news">We are proud to be the #1 University in UAE. To have the College of Information Technology. <a href="" onclick="window.open(\'abet.php\',\'\',\'menubar=no,dep=no,resizable=no,scrollbars=no,status=no,width=520,height=400\');">more...</a></p>'
tickercontent2[1]='<span class="Title_news"><a href="tagitraining.php"><img src="images/tagorg_logo.gif" width="31" height="41" hspace="10" vspace="5" border="0" align="right" />UD\'s CMPD and TAGITraining Sign Strategic MoU</a></span><p class="bodyText_news">As part of its effort to realize the Strategic Plan 2007-2015 envisioned by His Highness Shaikh Mohamed Bin Rashid Al Maktoum <a href="tagitraining.php">more...</a></p>'
//tickercontent2[2]='<a href="http://news.bbc.co.uk">BBC News: UK and international news</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.1
if (fadetype=="up" && this.opacitysetting>=1)
clearInterval(this[timerid])
}


