$(document).ready(function(){
    // run the code in the markup!
		$('#sliding_texts').cycle({ 
				  fx:     'scrollHorz', 
				  easing: 'bounceout', 
					  timeout:6000,
				  pager:  '#nav',
				  pagerAnchorBuilder: function(idx, slide) {         
				  // return selector string for existing anchor  
				  return '#nav li:eq(' + idx + ') a';   
				  } 
		});



});