$(function() {

    $('#home-presentation').cycle({
        fx:      'fade',
        timeout: 3500, 
        pager:   '#pres-titles',
		pause: 0,
        pagerAnchorBuilder: function(i) {
			var presTitle = new Array ();
			presTitle [1] = "Software";
			presTitle [2] = "Affiliates";
			presTitle [3] = "Network"; 
	        return '<li><a href="#" title="'+presTitle[i+1]+'">'+presTitle[i+1]+'</a></li>';
	    }
    });


});
