$(function() {
	
	$('.showcase').each(function() {
		var p = this.parentNode;
		$(this).cycle({
			fx: 'scrollHorz',
			speed: '500',
			timeout: 0,
			next: $('.next', p),
			prev: $('.prev', p),
			pager: $('.imagenav', p),
			pagerAnchorBuilder: function(idx, slide) {
				return '<li><a href="#"></a></li>';
			}
		});

	});

});

/*
$('.showcase').cycle({ 
    fx:     'scrollHorz', 
    speed:  '500', 
    timeout: 0, 
    next:   '.next', 
    prev:   '.prev', 
});
*/



/*
$(function() {
    $('.showcase').cycle({
        fx: 'scrollHorz',
        speed: 500,
        timeout: 0,
		prev: '#prev',
		next: '#next',
		nowrap: 1,
    });
});
*/
