var tickercontents=new Array()
tickercontents[0]="Womble is incredible! It is the only program I've found that can handle just about any format I throw at it. In a world of file-finicky video editors, it &nbsp;is refreshing to find&nbsp; a  tool that is so universal. The ability to edit without re-encoding is a huge time saver for longer projects... "
tickercontents[1]="&nbsp;I &nbsp;&nbsp;purchased &nbsp;&nbsp;the program just a &nbsp;few days ago, &nbsp;and I am thrilled. MPEG Video Wizard DVD is just the best app in this field!&nbsp; Fast, easy, stable and each cent its price worth!&nbsp; I never build my private DVDs so easy and fast in such a good quality."
tickercontents[2]="Your VOB editing is simply the best and fastest I've ever seen.  I'm proud to say that I use Mpeg DVD Wizard more than Sony Vegas Video & Adobe Premiere combined.  Your MPEG-2 encoder is amazing!  If I could give you an award I would! I wish you all had a boxed product so I could proudly display DVD Wizard on my shelf."
tickercontents[3]="I just purchased your MPEG Video Wizard and I have to tell you that your product has already saved me. While I was using the trial, I had a deadline where a customer wanted a change to the opening of a video and I didn¡¯t have time to re-render the entire video (4 hrs) and meet my deadline. With Womble MPEG Video Wizard I was able to render just the change to the opening and append it to the existing MPEG file and burn a new DVD and get it shipped out on time. I could not have made that deadline without your product."
tickercontents[4]="I have been struggling for weeks with Ulead video editor and  my Sony HDR-SR10e camcoder hardrive Mpeg files with chronic audio sync issues. The same 40min project took over 2 hrs to render in Ulead and took less than 20mins to have a DVD playing in my player sound all in sync with your little gem! I am truely amazed as if it wasn't for your program I would be selling my camcorder and forgetting about PC editing for good."
tickercontents[5]="I just want to say what a brilliant piece of software it is. I'm afraid that, having bought a Sony DVD player a few months back, I bought the Sony Vegas Movie Studio Platinum 6 to edit my DVD footage and make films, but what a waste of money that was ... always crashing, defying my 'intuitive' approach as to how to do things, generally driving me mad with frustration over wasted time, lost work etc. By contrast, MPEG Video Wizard DVD seems bug-free, has never yet crashed, locked up on me, or failed to deliver exactly what I want. Also, it is so intuitive. I absolutely love it."
tickercontents[6]="MG you guys are amazing for adding export support to formats like mp4.  We all know mpeg2 is on the way out and i thought i would have to use a different program, (although i LOVE yours DEARLY) but you guys have made my life SOOO much easier now ::::::)."

var persistlastviewedmsg=1 //
var persistmsgbehavior="onload" //set to "onload" or "onclick".
var tickdelay=8000
var divonclick=(persistlastviewedmsg && persistmsgbehavior=="onclick")? 'onClick="savelastmsg()" ' : ''
var currentmessage=0

function changetickercontent()
{
  if (crosstick.filters && crosstick.filters.length>0)
      crosstick.filters[0].Apply()
  crosstick.innerHTML=tickercontents[currentmessage]
  if (crosstick.filters && crosstick.filters.length>0)
      crosstick.filters[0].Play()
  currentmessage=(currentmessage==tickercontents.length-1)? currentmessage=0 : currentmessage+1
  var filterduration=(crosstick.filters&&crosstick.filters.length>0)? crosstick.filters[0].duration*1000 : 0
  setTimeout("changetickercontent()",tickdelay+filterduration)
}

function beginticker()
{
  if (persistlastviewedmsg && get_cookie("lastmsgnum")!="")
      revivelastmsg()
  crosstick=document.getElementById? document.getElementById("memoryticker") : document.all.memoryticker
  changetickercontent()
}

function get_cookie(Name)
{
  var search = Name + "="
  var returnvalue = ""
  if (document.cookie.length > 0)
  {
      offset = document.cookie.indexOf(search)
      if (offset != -1)
      {
          offset += search.length
          end = document.cookie.indexOf(";", offset)
          if (end == -1)
              end = document.cookie.length;
          returnvalue=unescape(document.cookie.substring(offset, end))
      }
  }
  return returnvalue;
}

function savelastmsg()
{
    document.cookie="lastmsgnum="+currentmessage
}

function revivelastmsg()
{
    currentmessage=parseInt(get_cookie("lastmsgnum"))
    currentmessage=(currentmessage==0)? tickercontents.length-1 : currentmessage-1
}

if (persistlastviewedmsg && persistmsgbehavior=="onload")
    window.onunload=savelastmsg
if (document.all||document.getElementById)
    document.write('<div id="memoryticker" '+divonclick+'></div>')
if (window.addEventListener)
    window.addEventListener("load", beginticker, false)
else if (window.attachEvent)
    window.attachEvent("onload", beginticker)
else if (document.all || document.getElementById)
    window.onload=beginticker
