var carousel;
$(document).ready(function(){ carousel = $('#carousel').carousel({width: 600, height: 250, itemWidth:120, horizontalRadius:270, verticalRadius:85, resize:false, scaleRatio:0.4, itemSelect:onItemSelect}); });	
function nextItem() { carousel.scrollToNext(); }	
function previousItem() { carousel.scrollToPrevious(); }
function onItemSelect(event) { $('#text #selected-title').html(event.data.title); $('#text #selected-description').html(event.data.description);}	

