animation example for content plugin


   clip: {
    onCuepoint: [5000, function() {
     var plugin = this.getPlugin("content");
     
     plugin.setHtml("").animate({height:40, width: 450}, 2000, function()  {
     
      // here animation is finished
      this.css("padding", 7);
       this.setHtml("Just <b>THINK</b> about all the possibilities");
     })
    }]
   }
   
  });
  </script>