$(function() {
	var	$test3 = $('#test3'),
		$caption = $('div.caption'),
		captions = ['abt', 'icsf', 'cc', 'dc37', 'Madame X'],
		STOP = 1, RUN = 2, PAUSE = 3;

	$test3.crossSlide({
		fade: 1
	}, [
		{
			src:  'images/home/abt.jpg',
			from: '100% 100% 1x',
			to:   '100% 100% 1x',
			href: 'arts_abt.php', 
			time: 2
		}, {
			src:  'images/home/icsf.jpg',
			from: '100% 100% 1x',
			to:   '100% 100% 1x',
			href: 'education_mmc.php', 
			time: 2
		}, {
			src:  'images/home/cc.jpg',
			from: '100% 100% 1x',
			to:   '100% 100% 1x',
			href: 'fundraising_archny.php', 
			time: 2
		}, {
			src:  'images/home/dc37.jpg',
			from: '100% 100% 1x',
			to:   '100% 100% 1x',
			href: 'public_affairs_dc37.php', 
			time: 2
		}, {
			src:  'images/home/madame_x.jpg',
			from: '100% 100% 1x',
			to:   '100% 100% 1x',			
			href: 'web_media.php', 
			time: 15
		}
	], function(idx, img, idxOut, imgOut) {
		if (idxOut == undefined) {
			$caption.text(captions[idx]).animate({ opacity: .7 })
		} else {
			$caption.animate({ opacity: 0 })
		}
	});
	$caption.show().css({ opacity: 0 })

});
