function getTweets(){

	 var url="http://search.twitter.com/search.json?callback=?&q=from%3Acharleneli";

	 $.getJSON(url,function(json){

	    // this is where we can loop through the results in the json object

		// alert(json.results);

		 var tweets = '';

		 var count  = 0;

		 $.each(json.results, function(i,tweet){

			 

			 if(count < 2){

		     // this is where we do what we want with the tweet

			 var tmpTxt = '<div class="text-box-small" style="margin-top: 10px; margin-bottom: 5px;">'+

				'<table style="width:100%">'+

				'<tr>'+

					'<td height="100" style="padding-left: 10px; padding-right: 10px">'+

						'<div><img src="'+tweet.profile_image_url+'" /></div>'+

					'</td>'+

					'<td valign="top" style="padding-top: 5px;">'+

						'<div class="small-text" style="padding-right: 10px;">'+tweet.text+'</div>'+

						

					'</td>'+

				'</tr>'+

			'</table>'+

			'</div>'+

			'<div class="small-text" style="text-align: right; padding-top: 0px; color: #96B102; padding-bottom: 10px; padding-right: 35px;">'+tweet.from_user+' <span style="color: #333333;"> - '+tweet.created_at+'</span></div>';

			 tweets += tmpTxt;

			 } 

			 count = count +1;

		});

		 $('#tweets').html(tweets);

	});

	 

	 var url="http://search.twitter.com/search.json?callback=?&q=from%3Adavidrock101";

	 $.getJSON(url,function(json){

	    // this is where we can loop through the results in the json object

		// alert(json.results);

		 var tweets = '';

		 var count  = 0;

		 $.each(json.results, function(i,tweet){

			 

			 if(count < 2){

		     // this is where we do what we want with the tweet

			 var tmpTxt = '<div class="text-box-small" style="margin-top: 10px; margin-bottom: 5px;">'+

				'<table style="width:100%">'+

				'<tr>'+

					'<td height="100" style="padding-left: 10px; padding-right: 10px">'+

						'<div><img src="'+tweet.profile_image_url+'" /></div>'+

					'</td>'+

					'<td valign="top" style="padding-top: 5px;">'+

						'<div class="small-text" style="padding-right: 10px;">'+tweet.text+'</div>'+

						

					'</td>'+

				'</tr>'+

			'</table>'+

			'</div>'+

			'<div class="small-text" style="text-align: right; padding-top: 0px; color: #96B102; padding-bottom: 10px; padding-right: 35px;">'+tweet.from_user+' <span style="color: #333333;"> - '+tweet.created_at+'</span></div>';

			 tweets += tmpTxt;

			 } 

			 count = count +1;

		});

		 $('#tweets2').html(tweets);

	});

	 

	 var url="http://search.twitter.com/search.json?callback=?&q=from%3ABillGates";

	 $.getJSON(url,function(json){

	    // this is where we can loop through the results in the json object

		// alert(json.results);

		 var tweets = '';

		 var count  = 0;

		 $.each(json.results, function(i,tweet){

			 

			 if(count < 2){

		     // this is where we do what we want with the tweet

			 var tmpTxt = '<div class="text-box-small" style="margin-top: 10px; margin-bottom: 5px;">'+

				'<table style="width:100%">'+

				'<tr>'+

					'<td height="100" style="padding-left: 10px; padding-right: 10px">'+

						'<div><img src="'+tweet.profile_image_url+'" /></div>'+

					'</td>'+

					'<td valign="top" style="padding-top: 5px;">'+

						'<div class="small-text" style="padding-right: 10px;">'+tweet.text+'</div>'+

						

					'</td>'+

				'</tr>'+

			'</table>'+

			'</div>'+

			'<div class="small-text" style="text-align: right; padding-top: 0px; color: #96B102; padding-bottom: 10px; padding-right: 35px;">'+tweet.from_user+' <span style="color: #333333;"> - '+tweet.created_at+'</span></div>';

			 tweets += tmpTxt;

			 } 

			 count = count +1;

		});

		 $('#tweets3').html(tweets);

	});

	

	

}





/*

"text":"@twitterapi  http:\/\/tinyurl.com\/ctrefg",

"to_user_id":396524,

"to_user":"TwitterAPI",

"from_user":"jkoum",

"id":1478555574,

"from_user_id":1833773,

"iso_language_code":"nl",

"source":"<a href="http:\/\/twitter.com\/">twitter<\/a>",

"profile_image_url":"http:\/\/s3.amazonaws.com\/twitter_production\/profile_images\/118412707\/2522215727_a5f07da155_b_normal.jpg",

"created_at":"Wed, 08 Apr 2009 19:22:10 +0000"

*/
