﻿var activeElement = 0;

$(document).ready(function () {

    if ($('.imgrotate').length == 1) {

        $('.imgrotate').show();

    } else {

        // start up the rotater
        $('#fpRotates').cycle({
            fx: 'fade',
            speed: 3000,
            timeout: 2000,
            pause: 1,
            pauseOnPagerHover: 0,
            fastOnEvent: 1

        });

    }

});


