$(function() {

$('#slideshow').crossSlide({
        fade: 1
    }, [
{ src: '/Portals/6/FrontPage/rock star day.jpg', 
    alt: 'Be a rock star',
    from: '100% 80% 1x',
    to:   '100% 80% 0.8x',
    time: 3
},
{ src: '/Portals/6/FrontPage/trim trail.jpg',
    alt: 'Outward bound',
    from: '100% 100% 1x',
    to:   '100% 50% 1x',
    time: 3
 },
{ src: '/Portals/6/FrontPage/Made for the occasion.JPG',
 alt: 'Too much fun',
    from: '80% 80% 1x',
    to:   '100% 100% 0.8x',
    time: 3
 },
{ src: '/Portals/6/FrontPage/commando day.JPG',
 alt: 'Commandos',
    from: '50% 100% 1x',
    to:   '100% 50% 1.3x',
    time: 3
 },
{ src: '/Portals/6/FrontPage/Allweather.JPG',
 alt: 'All weather',
    from: '10% 100% 1x',
    to:   '90% 100% 1x',
    time: 3
 },
{ src: '/Portals/6/FrontPage/Safety First.jpg',
 alt: 'Climbing',
    from: '100% 100% 1x',
    to:   '20% 50% 1.7x',
    time: 3
 },
{ src: '/Portals/6/FrontPage/self sufficiency.jpg',
 alt: 'Our animals',
    from: '100% 20% 1x',
    to:   '100% 50% 0.8x',
    time: 3
 }
], 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()
  }
})
});

