$(document).ready(function(){
    $('div.slides > ul').cycle({  
		fx: 'fade',
        timeout: 4500,
        speed: 1500,
		pager: '.slides-nav',
		next:   'div.slides > ul',
		autostop:      true,     // true to end slideshow after X transitions (where X == slide count) 
    	autostopCount: 7,		// number of transitions (optionally used with autostop to define X)		
		pause: 1
	}); 
});           

