﻿var activeElement = 0;

$(document).ready(function () {

    // start up the rotater for the questions
    $('#divLoopers').cycle({
        fx: 'fade',
        speed: 1000,
        timeout: 6000,
        startingSlide: _startUpSlide,
        pause: 1,
        before: afterChange,
        pauseOnPagerHover: 1,
        fastOnEvent: 1

    });

});

function afterChange(currentz) {

/*

    activeElement = $(currentz).attr("id").replace("event_", "");
    $("#switch_" + activeElement).attr("class", "pickOff");
    activeElement = $( this ).attr("id").replace("event_", "");
    $("#switch_" + activeElement).attr("class", "pickOn");
  */
   
}

function stopAll(current) {


    //$('#divEventsRotate').cycle('stop');

}
