$(document).ready(function(){

    
    
 //Set Default State of each portfolio piece
	$(".paging").show();
	/*$(".paging a:first").addClass("active");*/
		
	//Get size of images, how many there are, then determin the size of the image reel.
	var imageWidth = $(".window").width();
	var imageSum = $(".image_reel img").size();
	var imageReelWidth = imageWidth * imageSum;
	
	//Adjust the image reel to its new size
	$(".image_reel").css({'width' : imageReelWidth});
	
	//Paging + Slider Function
	rotate = function(){	
		var triggerID = $active.attr("rel") - 1; //Get number of times to slide
		var image_reelPosition = triggerID * imageWidth; //Determines the distance the image reel needs to slide

		/*$(".paging a").removeClass('active'); //Remove all active class
		$active.addClass('active'); //Add active class (the $active is declared in the rotateSwitch function)*/
		
		//Slider Animation
		/*$(".image_reel").animate({ 
			left: -image_reelPosition
		}, 500 );*/

		/*$(".image_reel").css("left",-image_reelPosition);*/
		
		$(".image_reel").fadeOut( 500, function(){ 
			$(".image_reel").css("left",-image_reelPosition);
			$(".image_reel").fadeIn(500);
		});
					if ( $active.attr("rel") >= 7) { //If paging reaches the end...
				/*$active.attr("rel",1);*/
				$active.addClass("pause");
				$active.attr("title","продолжить");
				clearInterval(play); //Stop the rotation
			}
		
	}; 
	
	//Rotation + Timing Event
	rotateSwitch = function(){		
		play = setInterval(function(){ //Set timer - this will repeat itself every 3 seconds
			$active = $('.paging a');//.next();
			var s = $active.attr("rel");
			var counter = + s + 1;
			$active.attr("rel",counter);
			/*$active.attr("title", counter);*/
			rotate(); //Trigger the paging and slider function
		}, 6000); //Timer speed in milliseconds (6 seconds)
	};
	
	rotateSwitch(); //Run function on launch
/*	clearInterval(play); //Stop the rotation*/
	
	//On Hover
/*	$(".image_reel img").hover(function() {
		clearInterval(play); //Stop the rotation
	}, function() {
		rotateSwitch(); //Resume rotation
	});	*/
	
	//On Click
	$(".paging a").click(function() {	
		if ($(this).attr("class")!="pause"){
			$(this).addClass("pause");
			$(this).attr("title","продолжить");
			clearInterval(play); //Stop the rotation
		}else{
			$(this).removeClass("pause");
			$(this).attr("title","приостановить");
			if($active.attr("rel") >= 7){
				$active.attr("rel",1)
			}else{
				var ss = $active.attr("rel");
				var scounter = + ss + 1;
				$active.attr("rel",scounter);
			}
			rotateSwitch(); // Resume rotation
			rotate(); 
		}
		$active = $(this); //Activate the clicked paging
		return false; //Prevent browser jump to link anchor
		//Reset Timer
		
		/*rotate(); //Trigger rotation immediately*/
		
		
	});	
});