$(document).ready(function() {
	$('#slides').cycle({
		fx: 'fade' // choose your transition type, ex: fade, scrollUp, shuffle, etc...
	});

/*
	$('#slides').crossSlide({
		fade: 1
	}, [
	{
		src:  '/wp-content/themes/raw_auzzie/images/slide_1.png',
		alt:  'Sand Castle',
		from: 'bottom right 1.0x',
		to:   'top left 0.8x',
		time: 5
	}, {
		src:  '/wp-content/themes/raw_auzzie/images/slide_2.png',
		alt:  'Sunflower',
		from: 'top left 1.2x',
		to:   'bottom right 1.0x',
		time: 5
	}, {
		src:  '/wp-content/themes/raw_auzzie/images/slide_3.png',
		alt:  'Flip Flops',
		from: 'bottom left 1.2x',
		to:   'top right 1.0x',
		time: 5
	}, {
		src:  '/wp-content/themes/raw_auzzie/images/slide_4.png',
		alt:  'Rubber Ring',
		from: 'top right 1.2x',
		to:   'bottom left 1.0x',
		time: 5
	}, {
		src:  '/wp-content/themes/raw_auzzie/images/slide_5.png',
		alt:  'Rubber Ring',
		from: 'top center 1.2x',
		to:   'bottom center 1.0x',
		time: 5
	}	], 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()
		}
	});
*/

});

