$(document).ready(function() {
	$('#rotator-content').cycle({fx: 'fade',speed: 3000, timeout: 40, requeueTimeout: 0});
	
	$('#thumb_0').bind('mouseenter', function() {
		$('#rotator-content').cycle({startingSlide: 0}) 
		return false; 
	});
	$('#thumb_1').bind('mouseenter', function() {
		$('#rotator-content').cycle({startingSlide: 1}); 
		return false; 
	});
	$('#thumb_2').bind('mouseenter', function() {
		$('#rotator-content').cycle({startingSlide: 2}); 
		return false; 
	});
});

