jQuery(document).ready(function() {

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

    //if user clicked on prev button
	jQuery('#prev').click(function() {

		//get the right position            
		var left_indent = parseInt(jQuery('.slides ul').css('left')) + item_width;

		//slide the item            
		jQuery('.slides ul').animate({'left' : left_indent}, 200,function(){    

            //move the last item and put it as first item            	
			jQuery('.slides li:first').before(jQuery('.slides li:last'));           

			//set the default item to correct position
			jQuery('.slides ul').css({'left' : left_value});
		
		});

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

 
    //if user clicked on next button
	jQuery('#next').click(function() {
		
		//get the right position
		var left_indent = parseInt(jQuery('.slides ul').css('left')) - item_width;
		
		//slide the item
		jQuery('.slides ul').animate({'left' : left_indent}, 200, function () {
            
            //move the first item and put it as last item
			jQuery('.slides li:last').after(jQuery('.slides li:first'));                 	
			
			//set the default item to correct position
			jQuery('.slides ul').css({'left' : left_value});
		
		});
		         
		//cancel the link behavior
		return false;
		
	});        
	
	//if mouse hover, pause the auto rotation, otherwise rotate it
	jQuery('.slides').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() {
	jQuery('#next').click();
}


jQuery(document).ready(function() {

	//rotation speed and timer
	
	jQuery('.bgslides h2').hide();
	
	//grab the width and calculate left value
	var item_widths = jQuery('.bgslides li').outerWidth(); 
	var left_values = (25 - item_widths) * (-1); 
        
    //move the last item before first item, just in case user click prev button
	jQuery('.bgslides li:first').before(jQuery('.bgslides li:last'));
	
	//set the default item to the correct position 
	jQuery('.bgslides ul').css({'left' : left_values});

    //if user clicked on prev button
	jQuery('#prev').click(function() {
		
		
				//get the right position
		var left_indents = parseInt(jQuery('.bgslides ul').css('left')) - item_widths;
		
		//slide the item
		jQuery('.bgslides ul').animate({'left' : left_indents}, 200, function () {
            
            //move the first item and put it as last item
			jQuery('.bgslides li:last').after(jQuery('.bgslides li:first'));                 	
			
			//set the default item to correct position
			jQuery('.bgslides ul').css({'left' : left_values});
		
		});
		         
		//cancel the link behavior
		return false;
		
	            
	});

 
    //if user clicked on next button
	jQuery('#next').click(function() {
	
	//get the right position            
		var left_indents = parseInt(jQuery('.bgslides ul').css('left')) + item_widths;

		//slide the item            
		jQuery('.bgslides ul').animate({'left' : left_indents}, 200,function(){    

            //move the last item and put it as first item            	
			jQuery('.bgslides li:first').before(jQuery('.bgslides li:last'));           

			//set the default item to correct position
			jQuery('.bgslides ul').css({'left' : left_values});
		
		});

		//cancel the link behavior            
		return false;

		

	});        

        
});
function rotate() {
	jQuery('#next').click();
}
