/*
News ticker plugin (BBC news style)
Bryan Gullan,2007-2010
version 2.2
updated 2010-04-04
Documentation at http://www.makemineatriple.com/news-ticker-documentation/
Demo at http://www.makemineatriple.com/jquery/?newsTicker
Use and distrubute freely with this header intact.
*/

$(document).ready(function() {
  var options = {
    newsList: "#news",
    ownControls: true,
    startDelay: 2000,
    placeHolder1: "|",
    placeHolder2: "_",
    tickerRate:80
  }
  $().newsTicker(options);
});