// JavaScript Document


/*Example message arrays for the two demo scrollers*/


var tickercontent=new Array()

tickercontent[0]='<a href="http://www.husys.net/grow.pdf" target="New"><b>Husys - Startup HR services</b></a><br>'
tickercontent[1]='<a href="http://up.tie.org/article/56/panel-discussion-transforming-business-through-hr-practices-smes" target="New"><b>Husys(R) @ Kanpur Panel Discussion Organised by TIE UP </b></a><br>'
tickercontent[2]='<a href="http://www.hybiz.tv/video.php?vid=156670" target="New"><b>Husys - on Hybiz online TV </b></a><br>'
tickercontent[3]='<a href="http://hrsme.blogspot.com" target="New"> Husys Message to CEOs </a><br>'
tickercontent[4]='<a href="http://www.thehindubusinessline.com/2006/03/11/stories/2006031102501900.htm" target="New"> Husys HR Services for SMEs Press Release coverage</a><br />'
tickercontent[5]='<a href="http://www.yourstory.in/news/1063-frontpage/2487-gundlapally-ramalinga-reddy-founder-husys-consulting-pvt-ltd" target="New"><B>Read Husys Story on Yourstory.in</B></a><br />'
tickercontent[6]='<a href="http://hrsme.blogspot.com/2009/12/hrfunction-outsourcing-model-shared-at.html" target="New"><b>Husys - Present its proprietary and path-breaking HR Function Outsourcing (HRFO) Model at IIM-Ahmedabad </b></a><br>'
tickercontent[7]='<a href="http://apit.ap.gov.in/pages/start_ur_business.htm#hc" target="New"> <b>Husys on Andhra Pradesh Government website </b></a><br />'
tickercontent[8]='<a href="http://www.husys.net/mhr.pdf" target="New">"MISSIONHR(R) - Practical HR Management Program, send your details to learn@husys.net", call us on 040-65195632<br><strong></a><br>'
tickercontent[9]='<a href="http://hrsme.blogspot.com/2009/12/hrfunction-outsourcing-model-shared-at.html" target="New"><b>Husys - Now operates in 8 cities in India, Just added Surat </b></a><br>'
tickercontent[10]='<a href="http://www.husys.net/campus.pdf" target="New">"Husys- Looking for MBA HR freshers mail your profile to careers@husys.net or call us on 040-65195632<br><strong></a><br>'
tickercontent[11]='<a href="http://hrsme.blogspot.com" target="New"> "GR.Reddy featured in iTV" </a><br>'
tickercontent[12]='<a> "Husys(R) & Nina E. Woodard & Associates, USA entered strategic alliance for supporting USA customers" </a><br>'
tickercontent[13]='<a href="http://economictimes.indiatimes.com/Corporate_Trends/A_very_personnel_touch/articleshow/2609689.cms" target="New"><b> "A personal touch" Economic Times Cooverage on Husys </b></a><br />'


var tickercontent2=new Array()
tickercontent2[0]=''
tickercontent2[1]=''
tickercontent2[2]=''






/***********************************************
* 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])
}


