$(document).ready(function() { 
	$(function() {
	    $('#s4').before('<div id="nav" class="nav">').cycle({
	        fx:     'fade',
	        speed:  'slow',
	        timeout: 3000,
	        pager:  '#nav',
	         pagerAnchorBuilder: function(index, el) {
        return '<a href="#"> </a>'; // whatever markup you want
    },
	        before: function() { if (window.console) console.log(this.src); }
	    });
	});
});
