// JavaScript Document
jQuery(document).ready(function() {

    $('.grybody ul:last').css({
        paddingBottom: '0'
    });

    $('#listoptions li:first-child').css({
        paddingLeft: '0'
    });


    $('#slides').cycle({
        fx: 'scrollUp',
        speed: 'slow',
        timeout: 0,
        cleartype: 1,
        pager: '#tabs',
        pagerEvent: 'click',
        pagerAnchorBuilder: function(idx, slide) {
            // return selector string for existing anchor 
            return '#tabs li:eq(' + idx + ') a';
        }

    });



});

Shadowbox.init();
