	// start: testimonials panel (#1)
	
	(function($jq){
		$jq(document).ready(function() {

	//rotation speed and timer
	var speed = 5000;
	var run = setInterval('rotate()', speed);	
	
	//grab the width and calculate left value
	var item_width = $jq('#slides-2 li.s2').outerWidth(); 
	var left_value = item_width * (-0); 
        
    //move the last item before first item, just in case user click prev button
	$jq('#slides-2 li.s2:first').before($jq('#slides li.s2:last'));
	
	//set the default item to the correct position 
	$jq('#slides-2 ul.s2').css({'left' : left_value});

    //if user clicked on prev button
	$jq('#prev-2').click(function() {

		//get the right position            
		var left_indent = parseInt($jq('#slides-2 ul.s2').css('left')) + item_width;

		//slide the item            
		$jq('#slides-2 ul.s2:not(:animated)').animate({'left' : left_indent}, 200,function(){    

            //move the last item and put it as first item            	
			$jq('#slides-2 li.s2:first').before($jq('#slides-2 li.s2:last'));           

			//set the default item to correct position
			$jq('#slides-2 ul.s2').css({'left' : left_value});
		
		});

		//cancel the link behavior            
		return false;
            
	});

 
    //if user clicked on next button
	$jq('#next-2').click(function() {
		
		//get the right position
		var left_indent = parseInt($jq('#slides-2 ul.s2').css('left')) - item_width;
		
		//slide the item
		$jq('#slides-2 ul.s2:not(:animated)').animate({'left' : left_indent}, 200, function () {
            
            //move the first item and put it as last item
			$jq('#slides-2 li.s2:last').after($jq('#slides-2 li.s2:first'));                 	
			
			//set the default item to correct position
			$jq('#slides-2 ul.s2').css({'left' : left_value});
		
		});
		         
		//cancel the link behavior
		return false;
		
	});        
	
	//if mouse hover, pause the auto rotation, otherwise rotate it
	$jq('#slides-2').hover(
		
		function() {
			clearInterval(run);
		}, 
		function() {
			run = setInterval('rotate()', speed);	
		}
	); 
	


        
});

//a simple function to click next link
//a timer will call this function, and the rotation will begin :)  
function rotate() {
	$jq('#next-2').click();
}

})($jq); 
