/** 

<span style="color: #adadad;">[<a href="http://twitter.com/%user_screen_name%/statuses/%id%/">..</a>]</span>

**/ 
	
	getTwitters('tweet', { 
		id: 'vissol', 
		count: 1, 
		enableLinks: true, 
		ignoreReplies: true, 
		clearContents: true, 
		template: '<span id="twitter-status">%text%</span><span id="twitter-status-id" style="display:none;">%id%</span>' ,
		callback: function() {
			var tweet = $("#twitter-status").html();
			if(tweet.length > 48) {
				$("#twitter-status").html(tweet.substring(0, 48) + " <a href=\"http://www.twitter.com/vissol/statuses/"+ $("#twitter-status-id").html() +"\">...</a>");
			}
		}
	});