/////////////////////////////////////////////////////
//    IMAGE SLIDESHOW
////////////////////////////////////////////////////


$(function() {
    $('#slideshow').cycle({
	//$('#feature').before('<ul id="nav">').cycle({ 
        fx:     'scrollLeft',
        speed:  500, //'slow',
        timeout: 9000,
        pager:  '#nav',
		slideExpr: 'img',
		after: function(curr, next, opts, forw) {
            var index=opts.currSlide;
            $('#captions div:visible').hide();
            $('#captions div').eq(index).show();
},

	pagerAnchorBuilder: function(idx, slide) {
            return '<a href="#"></a>';
	}
	
	});	
	
});
