function bitly(cb){
	$.getJSON('http://api.bit.ly/v3/shorten?login=magistream&apiKey=R_e5cb725daf73ab2835ceb4e47ed7fd54&format=json&callback=?',{'uri':document.location.href},function(data){
		cb(data['data']['url']);
		});
	}
$('.tweetthis').click(function(){
	$(this).fadeOut();
	bitly(function(url){
		tweet = 'Please click my MagiStream pet to help it grow! '+url+' #magistream';
		document.location = 'http://twitter.com/home?status='+encodeURIComponent(tweet);
		});
	});
$('.facebookthis').click(function(){
	$(this).fadeOut();
	bitly(function(url){
		document.location = 'http://www.facebook.com/sharer.php?u='+encodeURIComponent(url)+'&t='+encodeURIComponent('Please click my MagiStream pet to help it grow!');
		});
	});
