jQuery(document).ready(function($){
    
     //Add utility classes to nav menus
    $("ul li:first-child").addClass("first");
    $("ul li:last-child").addClass("last");
    
    $('#slideshow-controls')
        .append('<a href="#" id="slideshow-previous">&lt;</a>')
        .append('<a href="#" id="slideshow-next">&gt;</a>');
        
    
    $('#slideshow_wrapper').cycle({ 
        fx:         'fade',
        animIn:     'easeInQuad',  // properties that define how the slide animates in 
        animOut:    'easeOutQuad',
        speed:      1000, 
        timeout:    5000,
        prev:       '#slideshow-previous', 
        next:       '#slideshow-next',
        pause:      1,
        timeout:    5000
    });
    
    // Gallery Lightboxes
    $('div.photo-gallery').each( function(){
        $('a[data-present*="lightbox"]',this).lightBox({
            overlayBgColor: '#FFF',
            overlayOpacity: 0.6,
            imageLoading: themePath + '/img/lightbox-ico-loading.gif',
            imageBtnClose:  themePath + '/img/lightbox-btn-close.gif',
            imageBtnPrev:  themePath + '/img/lightbox-btn-prev.gif',
            imageBtnNext:  themePath + '/img/lightbox-btn-next.gif',
            imageBlank:  themePath + '/img/lightbox-blank.gif',
            containerResizeSpeed: 350
       });
    });
    
    // Page/Post Lightboxes
    $('#main div.thumbnail-gallery a').lightBox({
            overlayBgColor: '#FFF',
            overlayOpacity: 0.6,
            imageLoading: themePath + '/img/lightbox-ico-loading.gif',
            imageBtnClose:  themePath + '/img/lightbox-btn-close.gif',
            imageBtnPrev:  themePath + '/img/lightbox-btn-prev.gif',
            imageBtnNext:  themePath + '/img/lightbox-btn-next.gif',
            imageBlank:  themePath + '/img/lightbox-blank.gif',
            containerResizeSpeed: 350
    });
    
});


