$(function() {  
	 $('.list').html('');
	 $('.myslider').cycle({ 
		fx:    'scrollHorz',
		speed:500,
		timeout: 4000,
		pager:	'.list',
		pagerAnchorBuilder:  function(index, DOMelement) {
			
			return ' <li><a href="#"></a></li>';
		},
		activePagerClass: 'active'
	});
	
	
});


