$(document).ready(function() {
    $('#home_slideshow')
    .before('<div id="home_nav">')
    .cycle({
		fx:       'fade',
    speed:    1000, 
    timeout:  5000,
    pause:    1,
    pager:   '#home_nav',
    pagerAnchorBuilder: function(idx, slide) { 
        return '<a href="#"><span>'+idx+'</span></a>'; 
    } 

	});
});


