 $(document).ready(function(){
  $('ul#case-study-carousel').cycle({after: showItem,speed:300,timeout:6000})
})

function showItem() {
  $this = $(this)
  var t=setTimeout("showItemDelay()",1500);
}

function showItemDelay() {
  $this.find('.quotation').fadeIn(600);
  $this.siblings('li').find('.quotation').hide();
}
