$(document).ready(function(){
    $('.doubleColCarouselTextFrames').after('<a href="#" class="doubleColCarouselPrev">previous</a> <a href="#" class="doubleColCarouselNext">next</a>');

    $('.doubleColCarousel .noJS').removeClass('noJS');

    $('.doubleColCarousel .carouselFrames').each(function() {
		var $this = $(this);
		$this.cycle({
			fx: 'blindX',
			speed:  500, 
			timeout: 0,
			next:   $this.closest('.doubleColCarousel').find('.doubleColCarouselNext'), 
			prev:   $this.closest('.doubleColCarousel').find('.doubleColCarouselPrev'),
			cleartypeNoBg: true // if this is false it fixes black border on button but will make background white.
		});
	});
});