﻿$(document).ready(function() {    
    $(".use_fancybox").livequery(function(){
        $(this).fancybox({
            'autoDimensions'    : false,
            'width'				: 800,
            'height'			: 500,
            'titleShow'			: false,
            'autoScale'			: false,
            'ajax'              : {
                type : "POST",
                data : ({ajax:"1"})
            }

        });
    });
    
    $('.slideshow').livequery(function(){
        $(this).cycle({
            fx:     'turnDown',
            speed:  'fast',
            timeout: 0,
            pager:  '#nav'
        });
    })
    
    Galleria.loadTheme('js/galleria/themes/classic/galleria.classic.min.js');
    $(".gallery").livequery(function(){
        $(this).galleria({
            width: 800,
            height: 440
            //autoplay: 3000 // will move forward every 7 seconds
        });
    });
});
