$(function() {
	$('#crossslide').crossSlide({
	  fade: 1
	}, [
	  {
		src:  '/images-intro/home-vijittresort01.jpg',
		alt:  '.',
		from: 'bottom left',
		to:   '100% 0%',
		time: 8
	  }, {
		src:  '/images-intro/home-vijittresort02.jpg',
		alt:  '.',
		from: 'bottom left',
		to:   '100% 0%',
		time: 8
	  }, {	  
		src:  '/images-intro/home-vijittresort03.jpg',
		alt:  '.',
		from: 'top left',
		to:   'bottom left',
		time: 8
	  }, {
		src:  '/images-intro/home-vijittresort04.jpg',
		alt:  '.',
		from: 'bottom left',
		to:   'top left',
		time: 8
	  }, {
		src:  '/images-intro/home-vijittresort05.jpg',
		alt:  '.',
		from: 'top left',
		to:   'bottom left',
		time: 8
	  }	
	], function(idx, img, idxOut, imgOut) {
    if (idxOut == undefined)
    {
        // starting single image phase, put up caption
        $('div.caption').text(img.alt).animate({ opacity: 0.8 })
            }
            else
            {
// starting cross-fade phase, take out caption
$('div.caption').animate({ opacity: 0 })
} });

$('div.caption').show().css({ opacity: 0 })
});
