var slideshowCompleted = 0;
jQuery.noConflict();
jQuery('#slideshow').crossSlide({
  fade: 3
}, [
  {
    src:  '/sites/spitec.cl/files/slideshow/1.jpg',
    alt:  'Casa Matriz',
    from: '30% 50% 1.5x',
    to: '70% 50% 0.7x',
    time: 8
  }, {
    src:  '/sites/spitec.cl/files/slideshow/2.jpg',
    from: '100% 80% 1x',
    to:   '80% 0% 1.7x',
    time: 8
  }, {
    src:  '/sites/spitec.cl/files/slideshow/3.jpg',
    from: 'top left',
    to:   '30% 60% 1.5x',
    time: 8
  }, {
    src:  '/sites/spitec.cl/files/slideshow/4.jpg',
    alt:  'Sucursal Concepción',
    from: '40% 0% 1.5x',
    to:   '60% 22% 0.35x',
    time: 8
  }, {
    src:  '/sites/spitec.cl/files/slideshow/5.jpg',
    from: '50% 25%',
    to:   '50% 30% 1.7x',
    time: 8
  }
], function(idx, img, idxOut, imgOut) {
  if (idxOut == undefined)
  {
    // starting single image phase, put up caption
    //jQuery('div.caption').text(img.alt).animate({ opacity: .7 })
    if (slideshowCompleted && idx == 0) {
    //if (idx == 1) {
      //jQuery('#slideshow').crossSlidePause();
      //alert("paused");
      //jQuery('#slideshow').crossSlideFreeze();
      //setTimeout("alert('ahora');", 5000);
      //setTimeout("jQuery('#slideshow').crossSlideRestart();", 50000);
      //setTimeout("jQuery('#slideshow').crossSlideResume();", 50000);
    }
    //setTimeout("alert('hola');", 500);
  }
  else if (idx < idxOut)
  {
    slideshowCompleted++;
    // starting cross-fade phase, take out caption
    //jQuery('div.caption').fadeOut()
    if (slideshowCompleted >= 2) {
        jQuery('#slideshow').crossSlideFreeze();
        setTimeout("jQuery('#slideshow').crossSlideRestart();", 50000);
	slideshowCompleted = 0;
    }
  }
});

