function loadTwitter() {
	twitterWidget = new TWTR.Widget({
	  version: 2,
	  type: 'profile',
	  rpp: 5,
	  interval: 6000,
	  width: 270,
	  height: 300,
	  theme: {
	    shell: {
	      background: '#ffffff',
	      color: '#000000'
	    },
	    tweets: {
	      background: '#ffffff',
	      color: '#000000',
	      links: '#005ea6'
	    }
	  },
	  features: {
	    scrollbar: false,
	    loop: false,
	    live: false,
	    hashtags: true,
	    timestamp: true,
	    avatars: false,
	    behavior: 'all'
	  }
	});
	twitterWidget.render().setUser('trifectatech').start();
}	

$(document).ready(function(){
	if ($('#text-left').length) {
		$("#text-left p a[href^='http']").attr('target','_blank');
	}
}); 
