			var mycarousel_itemList = [
				{bob: '<h3>S.B, International Agent</h3><p>3rd May 2009</p><p>"The smoothie pouches are fantastic. It\'s a great product and I can\'t wait to sell it to our customers.".</p><p class="bottom"><a href="" title="Read More"><img src="images/read-more-bg.jpg" alt="Read More" /></a></p>'},
				{bob: '<h3>P.T, Esporta, Brighton</h3><p>29th March 2009</p><p>"Thank you for helping us get set up and for the launch. The smoothies are flying out!".</p><p class="bottom"><a href="" title="Read More"><img src="images/read-more-bg.jpg" alt="Read More" /></a></p>'}
			];
			function mycarousel_itemVisibleInCallback(carousel, item, i, state, evt) {
				var idx = carousel.index(i, mycarousel_itemList.length);
				carousel.add(i, mycarousel_getItemHTML(mycarousel_itemList[idx - 1]));
			};
			function mycarousel_itemVisibleOutCallback(carousel, item, i, state, evt) {
				carousel.remove(i);
			};
			function mycarousel_getItemHTML(item) {
				return '<div>' + item.bob + '</div>';
			};
			jQuery(document).ready(function() {
				jQuery('#mycarousel').jcarousel({
					wrap:'circular',
					auto:4,
					scroll:2,
					vertical:true,
					animation:3000,
					itemVisibleInCallback:{onBeforeAnimation: mycarousel_itemVisibleInCallback},
					itemVisibleOutCallback:{onAfterAnimation: mycarousel_itemVisibleOutCallback}
				});
			});
