function abredrop(){
    document.getElementById('drop').style.visibility = 'visible';
  }
  
function fechadrop(){
    document.getElementById('drop').style.visibility = 'hidden';
  }
  
  $(document).ready(function() {
    $("#tweets").getTwitter({
        userName: "clube_exclusive",
        numTweets: 1,
		showHeading: false,	
		showProfileLink: false,
		showTimestamp: true
    });
});
