// initialise setting for the custom homepage slider
$(function() {
    $('#s4').after('<ul id="nav">').cycle({
        fx:     'fade',
        speed:  'slow',
	    timeout: 3000,
        pager:  '#nav',
        height: 140,
		cleartypeNoBg: true,
		// callback fn that creates a thumbnail to use as pager anchor 
		pagerAnchorBuilder: function(idx, slide) { 
        return '<li><a href="#">&nbsp;</a></li>'; 
    }                 
    });
});

