/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

//jQuery.noConflict();

$(document).ready(function() {
 $('#rotar').cycle({
        fx:      'fade',
        timeout:  5000,
        speed:   900,
        before:   onBefore
    });

    var slidesAdded = false;

    function onBefore(curr, next, opts) {
        // make sure we don't call addSlide before it is defined
        if (!opts.addSlide || slidesAdded){
            return;
            }
        // add slides for images 3 - 8
        // slides can be a DOM element, a jQuery object, or a string
        var i;
        for (i=3; i<=6; i++){
            opts.addSlide('<img src="images/anuncio/img'+i+'.jpg" width="166px" height="150px"  alt="Autoespar" title="Autoespar toyota" />');
            }
        slidesAdded = true;
    }

   

});//(jQuery);