$(function() {
    var $mainFade = $('#mainFade'),
        STOP = 1, RUN = 2, PAUSE = 8,
        $caption = $('div.caption'),
		captions = ['Our experienced team of attorneys is dedicated to protecting your civil rights.', 
		'',
		'Our experienced team of attorneys is dedicated to protecting your civil rights.', 
		'', 
		'Our experienced team of attorneys is dedicated to protecting your civil rights.', 
		'' 

		];

    $mainFade.crossSlide({
        sleep: 4,
        fade: 2
    }, [
        { src: '/pages/images/home1_1.jpg' },
        { src: '/pages/images/home1_2.jpg' },
	    { src: '/pages/images/home1_3.jpg' },
	    { src: '/pages/images/home1_4.jpg' },
	    { src: '/pages/images/home1_5.jpg' },
	    { src: '/pages/images/home1_6.jpg' }
    ],
	
	function(idx, img, idxOut, imgOut) {
        if (idxOut == undefined) {
            $caption.text(captions[idx]).animate({ opacity: .7 })
        } else {
            $caption.animate({ opacity: 0 })
        }
    });
});

