// JavaScript Document
var pausecontent=new Array()
			pausecontent[0]='<strong class="maroon_head_2">CDISC Interchange at Mumbai, 2005</strong><br />Kinship presented "An Update on the SDTM" at 1st CDISC Interchange, 2005 at Mumbai.<br/><a href="http://www.cdisc.org/" class="news_lnks" target="_bank">www.cdisc.org</a><br/><br/>'
			pausecontent[1]='<strong class="maroon_head_2">CDISC Interchange at Tokyo, 2006</strong><br />Kinship presented "Conversion of Source DS to SDTM" at 2nd CDISC Interchange, 2006 at Tokyo.<br/><a href="http://www.cdisc.org/" class="news_lnks" target="_bank">www.cdisc.org</a><br/><br/>'
			pausecontent[2]='<strong class="maroon_head_2">PhUSE at Lisbon, 2007</strong><br />Kinship presented "Clinical Data Standards & Automation" in PhUSE Conference, 2007 at Lisbon.<br/><a href="http://www.phuse.eu" class="news_lnks" target="_bank">www.phuse.eu</a><br/><br/>'
			pausecontent[3]='<strong class="maroon_head_2">DIA at Boston, 2008</strong><br />Kinship opened its first booth at DIA and showcased flagship product: iDERT in 44th DIA at Boston.<br/><a href="http://www.diahome.org" class="news_lnks">www.diahome.org</a><br /><br/>'
			pausecontent[4]='<strong class="maroon_head_2">CDISC Interchange at Shanghai, 2008</strong><br />Kinship presented "End-to-End Automation using Clinical Data Standards" at CDISC China Interchange 2008, Shanghai.<br/><a href="http://www.cdisc.org" class="news_lnks" target="_bank">www.cdisc.org</a><br/><br/>'
			pausecontent[5]='<strong class="maroon_head_2">iDERT Launch, 2008</strong><br /><a href="http://www.pharmabiz.com/article/detnews.asp?articleid=44258&sectionid=20" class="news_lnks" target="_bank">http://www.pharmabizcom/article/detnews.asp?articleid=44258&sectionid=20</a><br/><br/>'
			
			function pausescroller(content, divId, divClass, delay){
			this.content=content //
			this.tickerid=divId //
			this.delay=delay //
			this.mouseoverBol=0 //
			this.hiddendivpointer=1 //
			document.write('<div id="'+divId+'" class="'+divClass+'" style="position: relative; overflow: hidden"><div class="innerDiv" style="position: absolute; width: 100%" id="'+divId+'1">'+content[0]+'</div><div class="innerDiv" style="position: absolute; width: 100%; visibility: hidden" id="'+divId+'2">'+content[1]+'</div></div>')
			var scrollerinstance=this
			if (window.addEventListener) //
			window.addEventListener("load", function(){scrollerinstance.initialize()}, false)
			else if (window.attachEvent) //
			window.attachEvent("onload", function(){scrollerinstance.initialize()})
			else if (document.getElementById) //
			setTimeout(function(){scrollerinstance.initialize()}, 500)
			}
			
			// 
			// 
			// 
			// 
			
			pausescroller.prototype.initialize=function(){
			this.tickerdiv=document.getElementById(this.tickerid)
			this.visiblediv=document.getElementById(this.tickerid+"1")
			this.hiddendiv=document.getElementById(this.tickerid+"2")
			this.visibledivtop=parseInt(pausescroller.getCSSpadding(this.tickerdiv))
			//
			this.visiblediv.style.width=this.hiddendiv.style.width=this.tickerdiv.offsetWidth-(this.visibledivtop*2)+"px"
			this.getinline(this.visiblediv, this.hiddendiv)
			this.hiddendiv.style.visibility="visible"
			var scrollerinstance=this
			document.getElementById(this.tickerid).onmouseover=function(){scrollerinstance.mouseoverBol=1}
			document.getElementById(this.tickerid).onmouseout=function(){scrollerinstance.mouseoverBol=0}
			if (window.attachEvent) //
			window.attachEvent("onunload", function(){scrollerinstance.tickerdiv.onmouseover=scrollerinstance.tickerdiv.onmouseout=null})
			setTimeout(function(){scrollerinstance.animateup()}, this.delay)
			}
			
			// 
			//
			//
			
			pausescroller.prototype.animateup=function(){
			var scrollerinstance=this
			if (parseInt(this.hiddendiv.style.top)>(this.visibledivtop+5)){
			this.visiblediv.style.top=parseInt(this.visiblediv.style.top)-5+"px"
			this.hiddendiv.style.top=parseInt(this.hiddendiv.style.top)-5+"px"
			setTimeout(function(){scrollerinstance.animateup()}, 50)
			}
			else{
			this.getinline(this.hiddendiv, this.visiblediv)
			this.swapdivs()
			setTimeout(function(){scrollerinstance.setmessage()}, this.delay)
			}
			}
			
			// 
			// 
			// 
			
			pausescroller.prototype.swapdivs=function(){
			var tempcontainer=this.visiblediv
			this.visiblediv=this.hiddendiv
			this.hiddendiv=tempcontainer
			}
			
			pausescroller.prototype.getinline=function(div1, div2){
			div1.style.top=this.visibledivtop+"px"
			div2.style.top=Math.max(div1.parentNode.offsetHeight, div1.offsetHeight)+"px"
			}
			
			// 
			//
			// 
			
			pausescroller.prototype.setmessage=function(){
			var scrollerinstance=this
			if (this.mouseoverBol==1) //
			setTimeout(function(){scrollerinstance.setmessage()}, 100)
			else{
			var i=this.hiddendivpointer
			var ceiling=this.content.length
			this.hiddendivpointer=(i+1>ceiling-1)? 0 : i+1
			this.hiddendiv.innerHTML=this.content[this.hiddendivpointer]
			this.animateup()
			}
			}
			
			pausescroller.getCSSpadding=function(tickerobj){ //
			if (tickerobj.currentStyle)
			return tickerobj.currentStyle["paddingTop"]
			else if (window.getComputedStyle) //if DOM2
			return window.getComputedStyle(tickerobj, "").getPropertyValue("padding-top")
			else
			return 0
			
			new pausescroller(pausecontent, "pscroller1", "someclass", 3000)
			document.write("<br />")
			}
			
			