﻿// Archivo JScript

/*$(document).ready(function() {
    $('.Mozaico').cycle({ 
        fx:    'scrollDown',         
        delay: -1000,
        sync: 0,
        before:  onBefore, 
        after:   onAfter 
    });
});	*/

$(document).ready(function() {
    $('.Mozaico').cycle({ 
        fx:    'fade',         
        timeout: 5000,
        before:  onBefore, 
        after:   onAfter 
    });
});

function onBefore() {        
    /*$('#Mozaico').css("height" + this.height); 
    $('#Mozaico').css("width" + this.width);*/
} 

function onAfter() { 
/*    $('#output').html("Scroll complete for:<br>" + this.src) 
        .append('<h3>' + this.alt + '</h3>'); */
}