// JavaScript Document

var tickercontent=new Array()
	tickercontent[0]="''I wanted a website with a distinct look and personality. uiser delivered that. Whenever I do have a question, the staff is always available, pleasant and patient.''<br/><br/><strong>www.montagemgmt.com</strong> "
	tickercontent[1]="''I am very happy with the design of our site. We are getting many compliments from clients. I definitely recommend uiser to anyone who is looking to upgrade their companys web site.''<br/><br/><strong>www.lafemigi.nl</strong>"
	tickercontent[2]="''The professionals at uiser blow the doors off the run of the mill web site designers and hosts, especially in the highly competitive internet real estate market.''<br/><br/><strong>www.merugroup.com</strong>"
	tickercontent[3]="''Our chamber needed a web site ASAP. uiser went beyond the call of duty to develop a site that effectively conveys our message. They made a potentially difficult process extremely easy.''<br/><br/><strong>www.nunet.com</strong>"
	tickercontent[4]="''We have gotten so many compliments from our subcontractors and clients on our site since making the switch to uiser. Thank you so much for all your help.<br/><br/><strong>www.jupitar.com</strong>"
	tickercontent[5]="''uiser has been a pleasure to work with! They are very knowledgeable, accessible and responsive to our needs. I highly recommend their services.''<br/><br/><strong>www.goldstoneisys.com</strong> "
	tickercontent[6]="''Updating our web site is so easy, it is addicting! Plus, if I ever need help, uiser is available.''<br/><br/><strong>www.lotuslandmark.com</strong>"
	tickercontent[7]="''Uiser has designed our company website and updated the company logo and style. We have received many complements on the professional and clean look of our website.'' <br/><br/><strong>Arnout van Kuijk, <br/>CTO eadoc LLC</strong>"


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=5000 //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])
}