$(function() {

    $('#ia-pres').cycle({
        fx:      'scrollLeft',
        timeout: 3000, 
        pager:   '#soft-overview',
		pause: 0,
		end:      function() {  
        	$('#ia-pres').cycle(0); 
    		return false; },
			
        pagerAnchorBuilder: function(i) {
			var presTitle = new Array ();
			presTitle [1] = "Affiliate Marketing Software";
			presTitle [2] = "Integration";
			presTitle [3] = "Flexibility";
			presTitle [4] = "Instant Info";
			presTitle [5] = "Geo-targeting";
			presTitle [6] = "PPC Tracking";
			presTitle [7] = "Tracking &amp; Reporting";
			presTitle [8] = "Languages";
			
			var presAlt = new Array ();
			presAlt [1] = "Affiliate Marketing Software";
			presAlt [2] = "Integration";
			presAlt [3] = "Flexibility";
			presAlt [4] = "Instant Info";
			presAlt [5] = "Geo-targeting";
			presAlt [6] = "PPC Tracking";
			presAlt [7] = "Tracking &amp; Reporting";
			presAlt [8] = "Languages";
			
	        return '<li><a href="#" title="'+presAlt[i+1]+'">'+presTitle[i+1]+'</a></li>';
	    }
    });


});