// <![CDATA[
$(function() {
	// Slider script
	$('#slideshow').cycle({
        fx:     'fade',
        speed:  'slow',
        timeout: 5000,
        pager:  '#slider_nav',
        pagerAnchorBuilder: function(idx, slide) {
            // return sel string for existing anchor
            return '#slider_nav li:eq(' + (idx) + ') a';
        }
    });
	$('ol li').wrapInner('<span style="color:#000;" />');

});
// ]]>
