jQuery(function($) {

    function initSlideshow(){
        $(".slidetabs").tabs(".images > div", {
            effect: 'fade',
            fadeOutSpeed: "slow",
            rotate: true
        }).slideshow();
    }
    initSlideshow();
    if ($(".play").length > 0) $(".play").data("slideshow").play();
    
    // initialize tooltip homepage
    $(".garantias img[title]").tooltip({

       // tweak the position
       position: 'bottom center',
       offset: [-20, 0],

       // use the "slide" effect
       effect: 'slide'

    // add dynamic plugin with configuration for bottom edge
    }).dynamic({ bottom: { direction: 'down', bounce: true } });  

    // initialize tooltip catalog
    $(".details-extra img[title]").tooltip({

       // tweak the position
       position: 'bottom center',
       offset: [0, 0],

       // use the "slide" effect
       effect: 'slide'

    // add dynamic plugin with configuration for bottom edge
    }).dynamic({ bottom: { direction: 'down', bounce: true } });    

    $(".project-info a").prepOverlay({
        subtype: 'ajax',
        filter: '#content > *',
		expose: {color:'#000', opacity:0.5},
        config: {onLoad: function(){initSlideshow();}},
        });
});


