// JavaScript Document


$(function() {
$('#slideshow').crossSlide({
  fade: 1
}, [
  {
    src:  'http://www.finishedbasement.com/images/basement_entertaining.jpg',
    alt:  'Basement Bar Basement Entertaining',
    from: 'bottom left',
    to:   'top right 1.2x',
    time: 4
  }, {
    src:  'http://www.finishedbasement.com/images/basement_family_room.jpg',
    alt:  'Basement Home Theater',
    from: 'top left',
    to:   'bottom right 1.2x',
    time: 4
  }, {
    src:  'http://www.finishedbasement.com/images/basement_craft_room.jpg',
    alt:  'Baseemtn Craft Art Room',
    from: 'bottom left',
    to:   'top left',
    time: 6
  }, {
    src:  'http://www.finishedbasement.com/images/basement_bar_stairway.jpg',
    alt:  'Basement Bar Basement Stairway',
    from: '100% 80%',
    to:   'top left 1.2x',
    time: 5
  }, {
    src:  'http://www.finishedbasement.com/images/basement_bar_stairs.jpg',
    alt:  'Baseemtn Bar Basement Stairs',
    from: 'bottom left',
    to:   'top left',
    time: 6
  }
], function(idx, img, idxOut, imgOut) {
  if (idxOut == undefined)
  {
    // starting single image phase, put up caption
    $('div.caption').text(img.alt).animate({ opacity: .7 })
  }
  else
  {
    // starting cross-fade phase, take out caption
    $('div.caption').fadeOut()
  }
});

});


