﻿// JScript File
$(document).ready(function() {

    $(".slidetabs").tabs(".images > div", {

	    // enable "cross-fading" effect
	    effect: 'fade',
	    fadeInSpeed: 1600,
	    fadeOutSpeed: 1600,

	    // start from the beginning after the last tab
	    rotate: true
        // use the slideshow plugin. It accepts its own configuration

    }).slideshow({autoplay: true, interval: 5000, clickable: false}); 
    
        $(".slidetabs-work").tabs(".images-work > div", {

	    // start from the beginning after the last tab
	    rotate: true
        // use the slideshow plugin. It accepts its own configuration

    }).slideshow({clickable: false});
});



