﻿// Home Banner

var initHomeSlideshow = {

    homeSlideshow: function () {
        var homeBanner = $('body.home div.banner ul');
            homeBanner.cycle({
            fx: "fade",
            speed: 1500,
            timeout: 9000,
            pause: 1
        });
    }
}


// Product Images

var initProductImages = {

    productImages: function () {
        var productGallery = $('body.page-template-siteproduct-php div.gallery div.slideshow');
        productGallery.cycle({
            fx: 'fade',
            timeout: 0,
            pager: '#slideshow-nav',
            pagerAnchorBuilder: function (idx, slide) {
                // return selector string for existing anchor 
                return '#slideshow-nav li:eq(' + idx + ') a';
            }
        });

    }

}


// Document Ready
$(document).ready(function () {
    // Home Banner
    initHomeSlideshow.homeSlideshow();
    // Product Gallery
    initProductImages.productImages();
});

