﻿$(function () {

    $(".slidetabs").tabs(".images > div", {

        event: 'mouseover',

        // enable "cross-fading" effect
        effect: 'fade',
        fadeOutSpeed: "slow",

        // start from the beginning after the last tab
        rotate: false

        // use the slideshow plugin. It accepts its own configuration
    }).slideshow({

        interval: "7000",
        clickable: false

    });

    $(".slidetabs").data("slideshow").play();

});
