$(document).ready(function() {
                  
var options = {
      newsList: "#news", // assumes unordered list; specify the ul holding the news items
      tickerRate: 50, // time gap between display of each letter (ms)
      startDelay: 100, // delay before first run of the ticker (ms)
      loopDelay: 3000, // time for which full text of each item is shown at end of print-out (ms)
      placeHolder1: " |", // character placeholder shown on even loops
      placeHolder2: "_" // character placeholder shown on odd loops

}
$().newsTicker(options);

});

function showFixtures(e) {
  if (confirm('The Sheffield United Fixtures and Results page will now be opened in a new window.\n\nPlease click below to proceed')) 
  {
      window.open (e.href, 'child')
  } 
  return false;
}