
/*************************************************************************
  This code is from Dynamic Web Coding at dyn-web.com
  Copyright 2001-5 by Sharon Paine 
  See Terms of Use at www.dyn-web.com/bus/terms.html
  regarding conditions under which you may use this code.
  This notice must be retained in the code as is!
*************************************************************************/

function initRotator() {
    // arguments: image name, rotation speed, (optional) path to images
    var rotator1 = new dw_Rotator('img1', 2000, "images/brand_logos_main/");
    // add the images to rotate into that image object  
    rotator1.addImages("adidas_logo.gif", "asics_logo.gif", "brooks_logo.gif", "columbia_logo.gif", "converse_logo.gif", "dunham_logo.gif", "hittec_logo.jpg", "kswiss_logo.gif", "magnum_logo.gif", "merrill_logo.gif", "mizuno_logo.gif", "newbalance_logo.gif", "oakley_logo.gif", "pearlizumi_logo.gif", "puma_logo.gif", "reebok_logo.gif", "ryka_logo.gif", "saucony_logo.gif");
    //rotator1.rotate(); // sometimes may want to call rotate here
    dw_Rotator.start();
}

