$(function() {
	
	$.getJSON('http://twitter.com/status/user_timeline/skealey76.json?count=1&callback=?', function(data){
		$.each(data, function(index,item) {
			$('#socialContent').append('<div class="tweet"><p>' + item.text + '</p></div>');
		});
	});
	
	$('#socialTab').toggle(function(){
		$('#socialWrap').stop().animate({left:0}, 'slow');},
	function(){
		$('#socialWrap').stop().animate({left:-318}, 'slow');});
});