$(function() {
  var $highlight = $('#artists_slides_container').cycle({
		fx: 'fade',
		prev: '#cycle_prev',
		next: '#cycle_next',
		before: function(currSlideElement, nextSlideElement, options, forwardFlag) {
		  var current_number = parseInt($(nextSlideElement).attr("rel"));
		  $(".artisti-slides").find(".currentpage").text(current_number);
		}
	});
	
	
	$(".textual-wrap").mouseenter(function() {
		$highlight.cycle("pause");
	});
	
	$(".textual-wrap").mouseleave(function() {
		if (!$(".pagi-alt1 > span.pause").hasClass("paused")) {
			$highlight.cycle("resume");
		}
	});
	
	$("#artists_slides_container").mouseenter(function() {
		$highlight.cycle("pause");
	});
	
	$("#artists_slides_container").mouseleave(function() {
		if (!$(".pagi-alt1 > span.pause").hasClass("paused")) {
			$highlight.cycle("resume");
		}
	});
	
	$("#cycle_play").click(function() {
		$highlight.cycle("toggle");
		
		var $this = $(this);
		
		if ($this.hasClass("pause")) {
			$this.removeClass("pause").addClass("play");
		} else {
			$this.removeClass("play").addClass("pause");
		}
	});
	
});
