$(function() {

    // if #imeScroller is present then run JS cycle
    // http://www.malsup.com/jquery/cycle/
    if ($('#imeScroller').length) {
        $('#imeScroller #slides').cycle({
            fx: 'scrollVert',
            speed: 800,
            timeout: 10000,
            next: '#next',
            prev: '#prev',
            pause: 1,
            rev: 1
        });
    }
});
