
jQuery(document).ready(function()
{
    jQuery('#slideshow .scrollable').scrollable({
        circular: true,
        clickable: false,
        mousewheel: false,
        size: 1,
        speed: 800,
        vertical: true
    }).navigator().autoscroll({
        interval: 7500
    });

    jQuery('#gallery .scrollable').scrollable({
        circular: true,
        clickable: false,
        mousewheel: false,
        size: 1,
        speed: 400
    }).navigator().autoscroll({
        interval: 5000
    });

    arrColors = [    
        '#364344',  // brown
        '#364344',  // tan
        '#364344',  // orange
        '#364344',  // navy
        '#364344',  // olive
        '#364344',  // turquoise
        '#364344',  // sand
        '#364344',  // grey
        '#364344'   // burgundy
    ];

    i = 0;

    jQuery('.navi a').each(function() {
        strColor = arrColors[i++];
        jQuery(this).css('background-color', strColor);
    });

	jQuery('a[rel="gallery"]').fancybox({
        'centerOnScroll' : true,
        'hideOnOverlayClick' : true,
        'hideOnContentClick' : true,
        'overlayOpacity' : 0.85,
        'overlayColor' : '#000',
        'padding' : 5,
        'showCloseButton' : true,
        'transitionIn' : 'fade',
        'transitionOut' : 'fade',
        'type': 'image'
	});
});

