$(document).ready(function() {
	
	/* add the navigation buttons to the cta area */
	var strScroll = '<ul class="scroll"><li class="previous"><img src="/images/callouts/cta-arrow-previous.png" /></li><li class="next"><img src="/images/callouts/cta-arrow-next.png" /></li></ul>';
	$('div.ctas').prepend(strScroll);
	
	/* move the last cta to the first position */
	$('ul.scroll li.previous').click(function () {
		$('div.ctas div:last').insertBefore($('div.ctas div:first'));
		trackerTwo._trackEvent('Scroll', 'Click', 'Scroll Button');
	});
	
	/* move the first cta to the last position */
	$('ul.scroll li.next').click(function () {
		$('div.ctas div:first').insertAfter($('div.ctas div:last'));
		trackerTwo._trackEvent('Scroll', 'Click', 'Scroll Button');
	});
	
});
