function startCarousel(index, max) {		
	
	$('#slider_div1').css('marginLeft', '0px');
	$('#slider_div2').css('marginLeft', '710px');	
	$('#slider_div1').html('<img src="www_layoutBuorre/slideshow_images/RSweb_' + index + '.jpg"/>').delay(8000).animate({
		"marginLeft": '-=710'			
	}, 1000, function() {					
		$('#slider_div1').html($('#slider_div2').html());			
		if (index === max) { index = 1
		} else { index += 1; }			
		setTimeout('startCarousel(' + index + ', ' + max + ')', 1000);			
	});
	
	var next_index = index + 1;
	if (index === max) { next_index = 1; }					
	
	
	$('#slider_div2').html('<img src="www_layoutBuorre/slideshow_images/RSweb_' + next_index + '.jpg"/>').delay(8000).animate({			
		"marginLeft": '-=710'
	}, 1000, function() {					
		// Animation complete.
	});
}
