$('.rotator').cycle({ 
	fx:     'fade', 
	speed:  'slow', 
	timeout: 5000,
	before: function() {
		$(".rotator_nav div").each(function () {
			$(this).removeClass('act');
		});
	},
	after:  function (curr, next, opts) {
		$(".rotator_nav div[rel="+(opts.currSlide + 1)+"]").addClass('act');
	}
});

$(".rotator_nav div").each(function (i) {
	$(this).bind('click', function() {
		$(".rotator_nav div").each(function () {
			$(this).removeClass('act');
		});
		$(this).addClass('act');
		$('.rotator').cycle(i); 
	});
});
$(".rotator").bind('mouseover', function() {
	$('.rotator').cycle('pause');
});
$(".rotator").bind('mouseout', function() {
	$('.rotator').cycle('resume');
});

