/*************************************************************************
    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 (milliseconds), 
    // path to images (optional), name of target window (optional, string)
    var rotator1 = new dw_Rotator('img1', 15000, "images/");
    // add the images to rotate into that image object
    rotator1.addImages("arc_is_changing_1.jpg", "fortinet_done_panel.jpg");
    // add the corresponding actions to take onclick of those images 
    // destination url or function pointer
    rotator1.addActions(
    "",
    "fortinet_security_unified_threat_management.htm"
    );
    //rotator1.rotate(); // sometimes may want to call rotate here
    
    dw_Rotator.start();
}