 $(document).ready(function() {				
	
	$(".rok-content-rotator-link").hover(function() {
	
		var new_pos = $(this).offset().top - $('.rok-content-rotator ul').offset().top + 52;
		
		$('.rok-content-rotator-link.active').removeClass('active');
		$(this).addClass('active');
		
		$(".arrow").stop().animate({top: new_pos}, 500);
		
		$('.rok-content-rotator .content').removeClass('active');
		
		$(this).parent().parent().children('.content').addClass('active');
		
		return false;
	}, function() {});
	
	$('#am_family').cycle({ 
	    fx:     'slideY', 
	    speed:   800, 
	    timeout: 5000, 
	    after: onAfter,
	    pause:   1 
	});

function onAfter() { 
    $('#output').html('<h3>' + this.alt + '</h3>'); 
}
	
 });