$(document).ready(function(){
	function onAfter(){
		$('#iphone #caption p').html(this.alt);
	}
	if ($('#iphone .inner').length) {
	$('#iphone .inner').cycle({
		fx: 'fade',
		speed: 500,
	    timeout: 5000,
		pause: 1,
		next: '#iphone .inner',
	    after: onAfter
	});
	}
	if ($('#iphone-vid .inner-vid').length) {
	$('#iphone-vid .inner-vid').cycle({
		fx: 'fade',
		speed: 500,
	    timeout: 5000,
		pause: 1,
		next: '#iphone-vid .inner-vid'
	});
	}
});
