jQuery(document).ready(function() {
  $('.reliability_container').each(function(){
    $(this).qtip({
      content: {
        text: false
      },
      position: {
        corner: {
          tooltip: 'bottomMiddle', // Use the corner...
          target:  'centerMiddle' // ...and opposite corner
        }
      },
      style: {
        border: {
          width: 5,
          radius: 10
        },
      padding: 10, 
      textAlign: 'center',
      tip: true, // Give it a speech bubble tip with automatic corner detection
      name: 'dark' // Style it according to the preset 'cream' style
      }
    });
  });
  
  $('.reliability_value').html('');

  $(function(){ 
    $("#twits-list").mbScrollable({ 
      width:260, 
      elementsInPage:1,
      elementMargin:0, 
      height: 65, 
      controls:"#twits-controls", 
      slideTimer:1000, 
      autoscroll:true, 
      scrollTimer:5000  
    });
  });
});

