$(document).ready(function(){ 

if($('#tooltip_text').html().length > 0) {
  
    $("#innerheading").tooltip({
        position: ['bottom', 'center']
    });

    setTimeout(function(){
      $("#innerheading").trigger('mouseover');
      setTimeout(function(){
        $("#innerheading").trigger('mouseout');
        $("#innerheading").unbind('mouseover');
        $('#tooltip_text').empty();
      },4000);

    },500);

}


 $("div.scrollable").scrollable().circular().autoscroll({autoplay: true});





}); 