﻿$(document).ready(function() {
    $('#rotatorFeature').cycle({
        fx:     'fade',
        speedIn:  2500,
        speedOut:  500,
        timeout: 4500,
        next:   '#next', 
        before: function() { if (window.console) console.log(this.src); }
    });
    $('#rotator').before('<div id="navRotator" class="rotatornav">').cycle({
        fx:        'fade',
        speedIn:   2500,
        speedOut:  500,
        timeout:   10000,
        next:      '#nextSplash', 
        previous:  '#previousSplash',
        pager:     '#navRotator',
        before: function() { if (window.console) console.log(this.src); }
    });
});