var tickercontent=new Array()
tickercontent[0]='The coaching at Jeeva’s for TOEFL iBT helped me in achieving 107/120. I am indebted to Mr.Vijay for honing my English proficiency skills. Thank you JEEVA’S<br/><strong>N.Veera Bapineedu<br/>TOEFL SCORE : 107/120</strong>'

tickercontent[1]='I thank Jeeva’s staff especially Salma madam for guiding me during my coaching in Jeeva’s. Her coaching & guidance helped me a lot in putting my efforts to get a good TOEFL score.<br/><strong>Satya Prasad Akkina<br/>TOEFL SCORE : 102/120</strong>'

tickercontent[2]='I am very thankful to Jeeva’s Academy for my excellent score in GMAT. The teaching curriculum is well planned and very efficient for those preparing for GMAT.<br/><strong>Kashyap Reddy B<br/>GMAT: Scaled 730, Percentile 96</strong>'

tickercontent[3]='Coaching at Jeeva’s really made the difference for me. The teaching and non-teaching staff have been really supportive. The material and encouragement has helped me to score a good band.<br/><strong>Syeda Mahim Kaleem<br/>IELTS TOTAL SCORE : 8</strong>'

tickercontent[4]='The study material provided by the institute and the Verbal classes by Ms. Jeeva have enormously benefited me towards my aim of achieving the scores that I have obtained.<br/><strong>V.S. Abhishek<br/>GRE TOTAL SCORE : 1500</strong>'

tickercontent[5]='I have taken the GRE course at Jeeva’s and I must say that it has been very effective for me. Ms. Jeeva’s planned method of teaching helped me improve my scores beyond my dreams.<br/><strong>Mohammed Naseer Ahmed<br/>GRE TOTAL SCORE : 1470</strong>'

tickercontent[6]='My Experience with Jeevas was great. Before coming to Jeevas I was perplexed about My study in U.S ,But after being here I was comfortable.<br/><strong>C. Venkatachala Nivas<br/>California State University</strong>'

tickercontent[7]='Jeeva’s Consultancy helped me to fulfill my dream for making it to US, when I felt that my dream was broken.<br/><strong>Mohammed Ansar Ahmed<br/>Bradley University</strong>'

tickercontent[8]='I had taken GRE coaching as well as Visa guidance with JEEVA’S. Let me be frank the GRE coaching is pretty good. <br/><strong>Mohammed Omer<br/>West Virginia University</strong>'

var tickercontent2=new Array()
tickercontent2[0]='<strong><font color="#C91D7F" size="2">GRE</font></strong><br/><strong>Jai Chandra Kumar</strong><br/>Verbal - 570, Quant - 800, Total - 1370<br/><strong>Vamsi Krishna</strong><br/>Verbal - 600, Quant - 800, Total - 1400<br/><strong>Ravikanth Reddy</strong><br/>Verbal - 660, Quant - 790, Total - 1450'
tickercontent2[1]='<strong><font color="#C91D7F" size="2">TOEFL</font></strong><br/><strong>N.Veera Bapineedu</strong><br/>TOEFL SCORE : 107/120<br/><strong>T. Divya</strong><br/>TOEFL SCORE : 111/120<br/><strong>V.Vamsee Krishna</strong><br/>TOEFL SCORE : 104/120'
tickercontent2[2]='<strong><font color="#C91D7F" size="2">IELTS</font></strong><br/><strong>Syeda mahim Kaleem</strong><br/>IELTS TOTAL SCORE : 8<br/><strong>Pavan Kireeti</strong><br/>IELTS TOTAL SCORE : 7.5<br/><strong>Simratpal Singh</strong><br/>IELTS TOTAL SCORE : 7.5'




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