var username = 'OrangeUKnews';
function ShowTweets(mode){
	$.getTweet(username, 3, function(data){ $.each($.getTweet.api, function(i, item){
    	    link = 'http://twitter.com/' + username + '/status/' + item.id_str;
            if(mode == 'subscribe')
            {
                opentags = '<blockquote><p><a href="' + link + '">';
                closetags = '</a></p></blockquote>';
            }
            else
            {
                opentags = '<blockquote><div class="bubbleTop"></div><div class="bubbleContent"><p><a href="' + link + '">';
                closetags = '</a></p></div><div class="bubbleBottom"></div></blockquote>';	            
            }
    		$(opentags + item.text + closetags).appendTo('.twittercontainer');
    	});
	});
}



