 (function($) {
    $.fn.jTwit = function(options) {
 
	settings = jQuery.extend({
	 name: "Jarvdesign",
	 count: 5,
	 global: true
	}, options);
 
    this.each(function() {
		/*console.log(this);*/
		container = this;
		/* Changed due to retweet issue 
		$.getJSON("http://twitter.com/statuses/user_timeline/"+settings.name+".json?callback=?&count="+settings.count,
		*/
		$.getJSON("http://api.twitter.com/1/statuses/user_timeline/"+settings.name+".json?callback=?&count="+settings.count+"&include_rts=1",
		function(data){
			$.each(data, function(index, item){
				/*console.log(item.user.profile_image_url);*/
				$(container).append("<li><img src='"+item.user.profile_image_url+"' />"+item.text+"</li>");
			});
		});
    });
	 
     return this;
    };
 })(jQuery);
