
/*
Mike's DHTML scroller (By Mike 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, 220, 90, 0, 0); //(xpos, ypos, width, height, border, padding)
myScroller1.setColors("#000000", "", ""); //(fgcolor, bgcolor, bdcolor)
myScroller1.setFont("Arial", 1);
myScroller1.addItem("<table><tr><td style='color:#939393;font-family:arial;font-size:11px;'><p align='justify'>Advertising on mobiles is the 'French Revolution of advertising' …the most extraordinary medium being developed today.</p></td></tr><tr><td align='right' style='color:#939393;font-family:arial;font-size:11px;'><b><i>Maurice Lévy, Board Chairman at Publicis</i></b></td></tr></table>");
myScroller1.addItem("<table><tr><td style='color:#939393;font-family:arial;font-size:11px;'><p align='justify'>Any brand Manager not actively trialling wireless marketing needs to be sacked.</p></td></tr><tr><td align='right' style='color:#939393;font-family:arial;font-size:11px;'><b><i>Paul Cook, Director Nightfly Inc</i></b></td></tr></table>");
/* myScroller1.addItem("<table><tr><td style='color:#939393;font-family:arial;font-size:11px;'><p align='justify'>An Idea whose time has come</p></td></tr><tr><td align='right' style='color:#939393;font-family:arial;font-size:11px;'><b><i>Satyan Nair - Director, New Media at MO Secure</i></b></td></tr></table>"); */
myScroller1.addItem("<table><tr><td style='color:#939393;font-family:arial;font-size:11px;'><p align='justify'>Mobile advertising is an exciting platform for marketers to extend their reach to target audiences and it is emerging as a powerful accelerant to any marketing program.</p></td></tr><tr><td align='right' style='color:#939393;font-family:arial;font-size:11px;'><b><i>Eric Wheeler, Managing Director, Ogilvy Interactive</i></b></td></tr></table>");
//myScroller1.addItem("<span style='font-size:11px;'><b>Pinnoy Radio</b> chooses <b>Citibuzzz</b> to provide them with SMS services.</p>");

//SET SCROLLER PAUSE
myScroller1.setPause(4000); //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
document.write("<div id='placeholder' style='position:relative; width:226px; height:90px;'> </div>")


