﻿/// <reference path="http://pinnacle.localhost.com/js/jquery-1.3.2.js" />

$(function() {
    $("div.slideShowTabs").tabs(".slideshowImages > div", {
        effect: 'fade', // enable "cross-fading" effect
        fadeInSpeed: 2000, // seconds until tab shows
        fadeOutSpeed: 1500, // seconds until tab hides
        rotate: true // start from the beginning after the last tab
    }).slideshow({ // create our slideshow
        clickable: true,
        interval: 5000, // seconds between rotatations
        autoplay: true
    });
});
