jQuery(document).ready(function($) {


var tweeturl = "http://api.twitter.com/status/"
				+"user_timeline/rob_james.json?count=7"
				+"&callback=?";
$.getJSON(tweeturl, function(data){
	$.each(data, function(i, item) {
		var txt = item.text
				.replace(/(https?:\/\/[-a-z0-9._~:\/?#@!$&amp;\'()*+,;=%]+)/ig,'<a target="_blank" href="$1">$1</a>')
				.replace(/@+([_A-Za-z0-9-]+)/ig, '<a target="_blank" href="http://twitter.com/$1">@$1</a>')
				.replace(/#+([_A-Za-z0-9-]+)/ig, '<a target="_blank" href="http://search.twitter.com/search?q=$1">#$1</a>');
		$('<li></li>').hide().addClass(i%2 ? 'even' : 'odd').html(txt).appendTo('.twitter').animate({opacity:'show'}, 1000);
	});
});


				
});
    var disqus_shortname = 'creativeblob'; // required: replace example with your forum shortname

    /* * * DON'T EDIT BELOW THIS LINE * * */
    (function () {
        var s = document.createElement('script'); s.async = true;
        s.type = 'text/javascript';
        s.src = 'http://' + disqus_shortname + '.disqus.com/count.js';
        (document.getElementsByTagName('HEAD')[0] || document.getElementsByTagName('BODY')[0]).appendChild(s);

		var comments = document.getElementById('disqus_thread');
		if (comments != null){
			var dsq = document.createElement('script'); dsq.async = true;
			dsq.type = 'text/javascript'; 
			dsq.src = 'http://' + disqus_shortname + '.disqus.com/embed.js';
			(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
    	};
    })();


