jQuery('div.ntbl-items').cycle({
	fx: 'fade',
	speed: 'slow',
	timeout: 5000,
	before: function(current, next, options, forwardFlag) {
		var color = jQuery(next).find('.ntbl-color').text();
		$('.ntbl-instance').animate({
			backgroundColor : color
		});
	},
	pager: '.ntbl-selector',
	pagerAnchorBuilder: function(idx, slide) {
		return '<li class="ntbl-selector-item"><a href="#"><img src="' + jQuery(slide).find('img').attr('src') + '" /></a></li>';
	}
});


// Additional CSS for browsers that do not support the 'opacity' property (IE)

if (!jQuery.support.opacity) {
	
}