$(document).ready(function() {
	if($('#texttwitter2').length){
		getTwitters(
			'texttwitter2',
			{
				id: twitter_username,
				count: 3,
				enableLinks: true,
				ignoreReplies: false,
				clearContents: true,
				newwindow: true
			}
		);
	 }else{
	 	return false;
		getTwitters(
			'texttwitter',
			{
				id: twitter_username,
				count: 1,
				enableLinks: true,
				ignoreReplies: true,
				clearContents: true,
				newwindow: true
			}
		);
	}
});


