$(document).ready(function() {
    $('.boxgrid a').lightBox({ fixedNavigation:true, 
                               imageBtnPrev: '/v4/images/lightbox-btn-prev.gif',
                               imageBtnNext: '/v4/images/lightbox-btn-next.gif',
                               imageBtnClose: '/v4/images/lightbox-btn-close.gif',
                               imageLoading: '/v4/images/lightbox-ico-loading.gif',
                             });

    $('#showcase-gallery a').lightBox({ fixedNavigation:true, 
                                        imageBtnPrev: '/v4/images/lightbox-btn-prev.gif',
                                        imageBtnNext: '/v4/images/lightbox-btn-next.gif',
                                        imageBtnClose: '/v4/images/lightbox-btn-close.gif',
                                        imageLoading: '/v4/images/lightbox-ico-loading.gif',
                                      });

    $('.boxgrid.caption').hover(
      function() {
        $('.cover', this).stop().animate({ top: '50px' }, { queue: false, duration: 160 });
      }, 
      function() {
        $('.cover', this).stop().animate({ top: '100px' }, { queue: false, duration: 160 });
      }
    );

    $('#rotating-testimonials').innerfade({ speed: 'slow',
                                            timeout: 8000,
                                            type: 'random',
                                            containerheight: '250px'
                                          });

    $('#rotating-image').innerfade({ speed: 'slow',
                                      timeout: 6000,
                                      type: 'random',
                                      containerheight: '168px'
                                     });

});

