/*
Marvin DHTML scroller (By Marvin Hall)
Last updated July 21st, 02' by Dynamic Drive for NS6 functionality
For this and 100's more DHTML scripts, visit http://www.dynamicdrive.com
*/

//SET SCROLLER APPEARANCE AND MESSAGES
var myScroller1 = new Scroller(0, 0, 200, 145, 1, 0); //(xpos, ypos, width, height, border, padding)
myScroller1.setColors("", "", ""); //(fgcolor, bgcolor, bdcolor)
myScroller1.setFont("Verdana,Arial,Helvetica", 1);
//myScroller1.addItem("<p class='scrolltitle'>Lorem ipsum sit no unum.<p class='scrollbody'>Dicant utamur vim ei, vel an errem clita suscipiantur. Viderer facilis ne vix, quo ea splendide ullamcorper. Sea nusquam salutatus abhorreant at, ut modo vitae.<p align='right'><a href='news/25years.html'><font color=#FE8544><b>More &gt;&gt;</b></a>");
myScroller1.addItem("<p class='scrolltitle'>RCBC Bankard Wins Two Major International Awards <p class='scrollbody'>Pioneer credit card brand RCBC Bankard has scored another win when its entry to the MasterCard Hall of Fame Awards 2009...<p align='right'><a href='../news/RCBC-BANKARD-MasterCard-HALL-OF-FAME.php'><font color=#FE8544><b>More &gt;&gt;</b></a>");
myScroller1.addItem("<p class='scrolltitle'>RCBC Bankard Wins Another Major Award!<p class='scrollbody'>We are happy to share with you the great news! Our RCBC Bankard Platinum Black Card MasterCard won Best Usage Campaign...<p align='right'><a href='../news/Hall-of-Fame-SOA.php'><font color=#FE8544><b>More &gt;&gt;</b></a>");
myScroller1.addItem("<p class='scrolltitle'>RCBC Bankard Posts Hefty Gains <p class='scrollbody'>RCBC Bankard, the credit card brand issued by RCBC, is experiencing hefty year-on-year growth since the bank’s entire...<p align='right'><a href='../news/hefty.php'><font color=#FE8544><b>More &gt;&gt;</b></a>");
//myScroller1.addItem("<p class='scrolltitle'>RCBC Bankard Launches First and only Lifestyle Dining Card <p class='scrollbody'>The RCBC Bankard brand has added yet another unique card to its wide array of card products...<p align='right'><a href='news/ljc.php'><font color=#FE8544><b>More &gt;&gt;</b></a>");
//myScroller1.addItem("<p class='scrolltitle'>LJC marks 30th anniversary with launch of the first and only lifestyle dining card <p class='scrollbody'>In honor of its founder, Larry J. Cruz, the LJC Restaurant Group celebrates its 30th anniversary...<p align='right'><a href='news/LJC30th_anniv.php'><font color=#FE8544><b>More &gt;&gt;</b></a>");
//myScroller1.addItem("<p class='scrolltitle'>BANKARD RE-BRANDS ON ITS 25th ANNIVERSARY <p class='scrollbody'>After 25 years of existence as the pioneering brand in the local credit card industry, Bankard is now ready to enter a more challenging and more aggressive phase.<p align='right'><a href='news/rebrand.php'><font color=#FE8544><b>More &gt;&gt;</b></a>");
//myScroller1.addItem("<p class='scrolltitle'>CARDMEMBERS WILL CONTINUE TO ENJOY THE USE OF THEIR CARDS<p class='scrollbody'>Cardmembers with existing Bankard credit cards will continue to enjoy the same, if not even greater, benefits and rewards…<p align='right'><a href='news/continue.php'><font color=#FE8544><b>More &gt;&gt;</b></a>");
<!--myScroller1.addItem("<p class='scrolltitle'>URGENT MESSAGE TO LOYAL CARDMEMBERS<p class='scrollbody'>This year, Bankard is celebrating its 25th anniversary in the credit card issuing business.<p align='right'><a href='news/assured.php'><font color=#FE8544><b>More &gt;&gt;</b></a>");


//SET SCROLLER PAUSE
myScroller1.setPause(2500); //set pause beteen msgs, in milliseconds

function runmikescroll() {

  var layer;
  var mikex, mikey;

  // Locate placeholder layer so we can use it to position the scrollers.

  layer = getLayer("placeholder");
  mikex = getPageLeft(layer);
  mikey = getPageTop(layer);

  // Create the first scroller and position it.

  myScroller1.create();
  myScroller1.hide();
  myScroller1.moveTo(mikex, mikey);
  myScroller1.setzIndex(100);
  myScroller1.show();
}


window.onload=runmikescroll

