// Carregar JSON diretamente da conta do Tweeter.
$.getJSON("http://twitter.com/statuses/user_timeline/safiradigital.json?callback=?", function(data) {
  $("#twitter p").html(data[0].text + '<br/>');
  });

// Iniciar jQuery
$(function(){
	// Mostrar Último Tweet apenas se tiver js ativado.
	$("#twitter").fadeIn(5000);
	
	$("#vip").hover(
	    function(){
	      $("#sms").stop().fadeIn(200);
	    },function(){
	      $("#sms").stop().fadeOut(200);
	    })
	
})

