/*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]='"Übercaster ist ansprechend gestaltet, funktioniert bestens und -was am Wichtigsten ist- wurde speziell für Podcaster entwickelt." <a href="http://podcastfreeamerica.com/index.php?/blog/entry/uebercaster-beta-now-available-for-download/" class="boxlink">(Podcast Free America)</a>'tickercontents[1]='"Übercaster wird mindestens den Preis für den coolsten Namen für eine Software gewinnen, wenn nicht mehr..." <a href="http://podcastingtricks.wordpress.com/2006/07/16/ubercaster-podcastingtrickscom/trackback/" class="boxlink">(PodcastingTricks)</a>'tickercontents[2]='"Übercaster lässt sämtliche andere Podcastingsoftware alt aussehen. Ich liebe es!" <a href="http://podcastalley.com/forum/showthread.php?t=132183" class="boxlink">(Forum post auf Podcast Alley)</a>'tickercontents[3]='"Es sieht so aus als hat dieses Programm das Potential einer der ganz großen Mitspieler zu werden." <a href="http://podcastrigs.com/wp-trackback.php?p=101" class="boxlink">(Podcastrigs.com)</a>'tickercontents[4]='"Mit meinem Aufnahmestudio-Background denke ich, dass dieses Programm einem perfekten Podcasting Studio bisher am Nächsten kommt..." <a href="http://www.ubercaster.com/ufo/viewtopic.php?t=172" class="boxlink">(Bob C)</a>'tickercontents[5]='"I had to change my pants after checking out those &Uuml;bercaster movies... d*mn I need a Mac..." <a href="http://www.podcastalley.com/forum/showthread.php?t=131412" class="boxlink">(Forum post on Podcast Alley)</a>'tickercontents[6]='"Wer plant, einen Podcast zu machen, kommt an Übercaster nicht vorbei." <a href="http://www.adventsnetcast.de/" class="boxlink">(Jan Persiel)</a>'tickercontents[7]='"... es öffnet eine neue Welt von Möglichkeiten, ohne die üblichen Schwierigkeiten." <a href="http://neildixon.com/2007/01/07/ubercaster-kicks-even-more-butt/" class="boxlink">(Neil Dixon)</a>'tickercontents[8]='"Was bisher mehrere Programme und viele Stunden Arbeit benötigt hat, wird nun komplett von Übercaster erledigt. Wärmstens zu empfehlen." <a href="http://www.serviceindustrynight.net/blog/_archives/2007/3/10/2794961.html" class="boxlink">(Wood)</a>'var tickdelay=8000 //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(){    var ran_unrounded=Math.random()*tickercontents.length    currentmessage= Math.floor(ran_unrounded)        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