/*
Highligher Scroller script- By JavaScript Kit
For this and over 400+ free scripts, visit http://www.javascriptkit.com/
This notice must stay intact
*/

var tickercontents=new Array()
tickercontents[0]='<u>Surat Raktadan Kendra</u> : Redesigning and restructuring of existing website of Regional Blood Bank and Transfusion Center with international standards.<br /><a class="more1" style="float:left;" href="http://www.srkrc.org" title="Clients" target="_blank">http://www.srkrc.org</a>'
					
tickercontents[1]='<u>Parth Chemicals Pvt. Ltd.</u> : Redesigning and restructuring of existing website of Surat - Gujarat based Pharma manufacturing company.<br /><a class="more1" style="float:left;" href="http://www.parthexports.com" title="Clients" target="_blank">http://www.parthexports.com</a>'

tickercontents[2]='<u>Dr. Arvind Dhameliya\'s Kidney Hospital</u> : Designing and developing website for Dr. Arvind Dhameliya\'s Kidney Hospital - Surat.<br /><a class="more1" style="float:left;" href="http://www.kidneyhospital.co.in" title="Clients" target="_blank">http://www.kidneyhospital.co.in</a>'

tickercontents[3]='<u>Raj Empire</u> : Web Hosting and domain registration services to Surat - Gujarat based Multiplex Cinema.<br /><a class="more1" style="float:left;" href="http://www.rajempire.in" title="Clients" target="_blank">http://www.rajempire.in</a>'

tickercontents[4]='<u>Natwar Construction Company</u> : Designing and developing website for Natwar Construction Company - Surat.<br /><a class="more1" style="float:left;" href="http://www.natwar.co.in" title="Clients" target="_blank">http://www.natwar.co.in</a>'

tickercontents[5]='<u>I-Am-The-Muse</u> : Adding/modifying content/design to USA based hobby website.<br /><a class="more1" style="float:left;" href="http://www.i-am-the-muse.com/" title="Clients" target="_blank">http://www.i-am-the-muse.com/</a>'

tickercontents[5]='<u>Dust Destroyers</u> : Adding form to Flash based website for UK based company.<br /><a class="more1" style="float:left;" href="http://www.dustdestroyers.com//" title="Clients" target="_blank">http://www.dustdestroyers.com/</a>'




var tickdelay=5000 //delay btw messages
var highlightspeed=10 //10 pixels at a time.

////Do not edit pass this line////////////////

var currentmessage=0
var clipwidth=0

function changetickercontent(){
crosstick.style.clip="rect(0px 0px auto 0px)"
crosstick.innerHTML=tickercontents[currentmessage]
highlightmsg()
}

function highlightmsg(){
var msgwidth=crosstick.offsetWidth
if (clipwidth<msgwidth){
clipwidth+=highlightspeed
crosstick.style.clip="rect(0px "+clipwidth+"px auto 0px)"
beginclip=setTimeout("highlightmsg()",20)
}
else{
clipwidth=0
clearTimeout(beginclip)
if (currentmessage==tickercontents.length-1) currentmessage=0
else currentmessage++
setTimeout("changetickercontent()",tickdelay)
}
}

function start_ticking(){
crosstick=document.getElementById? document.getElementById("highlighter") : document.all.highlighter
crosstickParent=crosstick.parentNode? crosstick.parentNode : crosstick.parentElement
if (parseInt(crosstick.offsetHeight)>0)
crosstickParent.style.height=crosstick.offsetHeight+'px'
else
setTimeout("crosstickParent.style.height=crosstick.offsetHeight+'px'",100) //delay for Mozilla's sake
changetickercontent()
}

if (document.all || document.getElementById)
window.onload=start_ticking

