jQuery( document ).ready( function() {
        // jQuery('#tabs').frozTabs({slider: 'froz-tabs-slider', tabLeftPos: 10});
        
        // jQuery('a.fancybox-enable').fancybox({
        //     cyclic: true,
        //     titlePosition: 'over',
        //     centerOnScroll: true
        // });
        
        jQuery( '.preview-list-1 li a' ).hover(
            function(){
                var _this = jQuery(this);
                var _caption = _this.find('figcaption');
                
                _caption.animate({height:'32px', top:'80px'}, 300, 'easeInQuint');
            }, 
            function(){
                var _this = jQuery(this);
                var _caption = _this.find('figcaption');
                _caption.animate({height:'26px', top:'102px'}, 300, 'easeOutQuint');
            }
        );
        
        jQuery( '.preview-list-2 li a' ).hover(
            function(){
                var _this = jQuery(this);
                var _caption = _this.find('figcaption');
                
                _caption.animate({height:'46px', top:'102px'}, 300, 'easeInQuint');
            }, 
            function(){
                var _this = jQuery(this);
                var _caption = _this.find('figcaption');
                _caption.animate({height:'26px', top:'136px'}, 300, 'easeOutQuint');
            }
        );
        
});



