<!----------// BO tickerScript.js //---------->
var scrolling_div15=null;
var total_height_offset15=210;
var news_scroller_height15=5;
var paused15=false;

function mouse_out15(index) {
  window.status = "";
  var scroll_id = 15;
  news_item_div = document.getElementById('news_item'+index + scroll_id);
  news_title_div = document.getElementById('news_title'+index + scroll_id);
  news_item_div.style.color = '#333333';
  news_title_div.style.color = '#333333';
  paused15=false;
}

function scroll15() {
  if(paused15==false){
    total_height_offset15--;
    if(total_height_offset15 <( -1 * news_scroller_height15)) {
      total_height_offset15=210;
    }
    scrolling_div15.style.top=total_height_offset15+"px";  }
  setTimeout('scroll15()',30);
}

var waitCount15=0;

function waitImageLoad15(){
  document.getElementById('bannerIcon15').visibility = 'visible';
  document.getElementById('bannerIcon15').style.display = 'inline';
  if ((document.getElementById('bannerIcon15').height > 25) || (waitCount15 > 10)) {
    setTimeout("init15()",60);
  }  else {
    waitCount15++;
    setTimeout("waitImageLoad15()",200);
  }
}

function init15() {
  reset_it15();
  scroll15();
}
<!----------// EO tickerScript.js //---------->

