
$(document).ready(function(){
		console.log("Iniciando slides das imagens");
    var instanceOne = new ImageFlow();
    instanceOne.init({
        ImageFlowID: 'imageFlowGallery',
        reflections: false,
        startAnimation: true,
        circular: true,
        imageCursor: 'pointer',
        onClick: function(){ 
            location.href = $(this).attr('URL');
            return false;
        },
        imageFocusMax: 2,
        opacity: true,
        slider: false,
				slideshow: true,
				slideshowAutoplay: true,
				slideshowSpeed: 3000
    });
});

