(function($) {
 
  $.fn.tweet = function(o){
    var s = {
      username: ["seaofclouds"],              // [string]   required, unless you want to display our tweets. :) it can be an array, just do ["username1","username2","etc"]
      avatar_size: null,                      // [integer]  height and width of avatar if displayed (48px max)
      count: 3,                               // [integer]  how many tweets to display?
      intro_text: null,                       // [string]   do you want text BEFORE your your tweets?
      outro_text: null,                       // [string]   do you want text AFTER your tweets?
      join_text:  null,                       // [string]   optional text in between date and tweet, try setting to "auto"
      auto_join_text_default: "",      // [string]   auto text for non verb: "i said" bullocks
      auto_join_text_ed: "",                 // [string]   auto text for past tense: "i" surfed
      auto_join_text_ing: "",             // [string]   auto tense for present tense: "i was" surfing
      auto_join_text_reply: "",   // [string]   auto tense for replies: "i replied to" @someone "with"
      auto_join_text_url: "", // [string]   auto tense for urls: "i was looking at" http:...
      loading_text: null,                     // [string]   optional loading text, displayed while tweets load
      query: null                             // [string]   optional search query
    };

    $.fn.extend({
      linkUrl: function() {
        var returning = [];
        var regexp = /((ftp|http|https):\/\/(\w+:{0,1}\w*@)?(\S+)(:[0-9]+)?(\/|\/([\w#!:.?+=&%@!\-\/]))?)/gi;
        this.each(function() {
          returning.push(this.replace(regexp,"<a href=\"$1\">Click to open</a>"))
        });
        return $(returning);
      },
      linkUser: function() {
        var returning = [];
        var regexp = /[\@]+([A-Za-z0-9-_]+)/gi;
        this.each(function() {
          returning.push(this.replace(regexp,"<a href=\"http://twitter.com/$1\">@$1</a>"))
        });
        return $(returning);
      },
      linkHash: function() {
        var returning = [];
        var regexp = / [\#]+([A-Za-z0-9-_]+)/gi;
        this.each(function() {
          returning.push(this.replace(regexp, ' <a href="http://search.twitter.com/search?q=&tag=$1&lang=all&from='+s.username.join("%2BOR%2B")+'">#$1</a>'))
        });
        return $(returning);
      },
      capAwesome: function() {
        var returning = [];
        this.each(function() {
          returning.push(this.replace(/(a|A)wesome/gi, 'AWESOME'))
        });
        return $(returning);
      },
      capEpic: function() {
        var returning = [];
        this.each(function() {
          returning.push(this.replace(/(e|E)pic/gi, 'EPIC'))
        });
        return $(returning);
      },
      makeHeart: function() {
        var returning = [];
        this.each(function() {
          returning.push(this.replace(/[&lt;]+[3]/gi, "<tt class='heart'>&#x2665;</tt>"))
        });
        return $(returning);
      }
    });

    function relative_time(time_value) {

	 var parsed_date = Date.parse(time_value);
	 /*alert('1. Date as in Twitter DB: '+time_value);*/
 
	 var parsed_date2 = parsed_date - (3*60*60*1000);
	 /*var parsed_date2 = parsed_date */
	 
	 var new_dd = new Date(parsed_date2);
	 /*alert('Date shifted for -0 hours : '+new_dd);*/
	 /*time_value1 = new_dd.toString();*/

	 
	 /* *********************************************** */
	 var mi_date = new_dd.getDate();
	 var mi_hours = new_dd.getHours();
	 var mi_minutes = new_dd.getMinutes();
	 var mi_month = new_dd.getMonth();
	 
	 var mi_hours2 = mi_hours;
	 var mi_am_pm = '_';
	 
	 
	 if (mi_hours < 12) 
	 {
		mi_am_pm = 'AM';
	 	mi_hours2 = mi_hours;
	 }
	 else 
	 {
		 mi_am_pm = 'PM';
		 
		 if (mi_hours == 12)
		 {
		 	mi_hours2 = mi_hours;
		 }
		 else 
		 {
		 	mi_hours2 = mi_hours-12;
	     }
		
	 }


	 /*alert('QQ '+new_dd);
	 alert('QQ '+mi_hours);*/
	 
	 /*alert(mi_date);
	 alert(mi_hours);
	 alert(mi_minutes);
	 alert(mi_month);
		 alert(mi_month*2);*/

	var tw_shortmon = 'unknown';
	
	theMonth = d.getMonth();
	
		switch (mi_month)
		{
		case 0:
			tw_shortmon = 'Jan';
			break;
		case 1:
			tw_shortmon = 'Feb';
			break;
		case 2:
			tw_shortmon = 'Mar';
			break;
		case 3:
			tw_shortmon = 'Apr';
			break;
		case 4:
			tw_shortmon = 'May';
			break;
		case 5:
			tw_shortmon = 'Jun';
			break;
		case 6:
			tw_shortmon = 'Jul';
			break;
		case 7:
			tw_shortmon = 'Aug';
			break;
		case 8:
			tw_shortmon = 'Sep';
			break;
		case 9:
			tw_shortmon = 'Oct';
			break;
		case 10:
			tw_shortmon = 'Nov';
			break;
		case 11:
			tw_shortmon = 'Dec';
			break;
		default:
			tw_shortmon = '***';
		}
	 
	 /* *********************************************** */
	 
	 var stndrdth = 'th';
		  
	 tw_date_i = mi_date;
	  
	  switch (tw_date_i) {
		case 1:
		stndrdth = 'st';
		break;
		case 2:
		stndrdth = 'nd';
		break;
		case 3:
		stndrdth = 'rd';
		break;
		case 21:
		stndrdth = 'st';
		break;
		case 22:
		stndrdth = 'nd';
		break;
		case 23:
		stndrdth = 'rd';
		break;		
		case 31:
		stndrdth = 'st';
		break;
		default:	
		stndrdth = 'th';		
	  
	  }

	 var str_minutes = mi_minutes.toString();
	  if (str_minutes.length < 2) {
		str_minutes = '0' + str_minutes; 
  	 }
	 
	 /*Mon Jun 08 2009 08:44:44 GMT-0400 (Eastern Daylight Time*/

	 
	 /*tw_longmon + ' ' + tw_date + ',' + tw_year + ' ' + tw_hours + ':' + tw_min + ' ' + tw_am_pm*/
	 

	/*return tw_longmon + ' ' + tw_date + ', ' + tw_year + ' ' + tw_hours + ':' + tw_min + ' ' + tw_am_pm;*/
/*	 return '<i>' + tw_hours + ':' + tw_min + ' ' + tw_am_pm + ' ' + tw_longmon + ' ' + tw_date+stndrdth +
	  '</i>';*/

	 	  return '<i>' + mi_hours2.toString() + ':' + str_minutes + ' ' + mi_am_pm + ' ' + tw_shortmon.toString() + ' ' +  mi_date.toString() + stndrdth +  '</i>';
    }

    if(o) $.extend(s, o);
    return this.each(function(){
      var list = $('<ul class="tweet_list">').appendTo(this);
      var intro = '<p class="tweet_intro">'+s.intro_text+'</p>'
      var outro = '<p class="tweet_outro">'+s.outro_text+'</p>'
      var loading = $('<p class="loading">'+s.loading_text+'</p>');
      if(typeof(s.username) == "string"){
        s.username = [s.username];
      }
      var query = '';
      if(s.query) {
        query += 'q='+s.query;
      }
      query += '&q=from:'+s.username.join('%20OR%20from:');
      var url = 'http://search.twitter.com/search.json?&'+query+'&rpp='+s.count+'&callback=?';
      if (s.loading_text) $(this).append(loading);
      $.getJSON(url, function(data){
        if (s.loading_text) loading.remove();
        if (s.intro_text) list.before(intro);
        $.each(data.results, function(i,item){
          // auto join text based on verb tense and content
          if (s.join_text == "auto") {
            if (item.text.match(/^(@([A-Za-z0-9-_]+)) .*/i)) {
              var join_text = s.auto_join_text_reply;
            } else if (item.text.match(/(^\w+:\/\/[A-Za-z0-9-_]+\.[A-Za-z0-9-_:%&\?\/.=]+) .*/i)) {
              var join_text = s.auto_join_text_url;
            } else if (item.text.match(/^((\w+ed)|just) .*/im)) {
              var join_text = s.auto_join_text_ed;
            } else if (item.text.match(/^(\w*ing) .*/i)) {
              var join_text = s.auto_join_text_ing;
            } else {
              var join_text = s.auto_join_text_default;
            }
          } else {
            var join_text = s.join_text;
          };

          var join_template = '<span class="tweet_join"> '+join_text+' </span>';
          var join = ((s.join_text) ? join_template : ' ')
          var avatar_template = '<a class="tweet_avatar" href="http://twitter.com/'+ item.from_user+'"><img src="'+item.profile_image_url+'" height="'+s.avatar_size+'" width="'+s.avatar_size+'" alt="'+item.from_user+'\'s avatar" border="0"/></a>';
          var avatar = (s.avatar_size ? avatar_template : '')
          var date = '<a href="http://twitter.com/'+item.from_user+'/statuses/'+item.id+'" title="view tweet on twitter"></a>';
		  var date2 = relative_time(item.created_at);
          var text = '<span class="tweet_text">' +$([item.text]).linkUrl().linkUser().linkHash().makeHeart().capAwesome().capEpic()[0]+ '</span>';
          
          // until we create a template option, arrange the items below to alter a tweet's display.
          /*list.append('<li>' + avatar + date + join + text + '</li>');*/
		  list.append('<li>' + join + text + date + "<br>" + date2 + '</li>');

          list.children('li:first').addClass('tweet_first');
          list.children('li:odd').addClass('tweet_even');
          list.children('li:even').addClass('tweet_odd');
        });
        if (s.outro_text) list.after(outro);
      });

    });
  };
})(jQuery);