$.ajax({ 
	type: 'GET',
	dataType: 'jsonp',
	url: 'http://feeds.delicious.com/v2/json/urlinfo/' + del_md5,
	success: 
	function( data ) {
		if( data.length > 0 ) {
			$( '.social' ).prepend( '<a rel="nofollow" href="http://delicious.com/post?url=' + del_url + '&amp;title=' + del_title + '" title="Bookmark this post at Delicious" class="delicious">' + data[0].total_posts + ' Del.icio.us</a>' );
		}
		else {
			$( '.social' ).prepend( '<a rel="nofollow" href="http://delicious.com/post?url=' + del_url + '&amp;title=' + del_title + '" title="Bookmark this post at Delicious" class="delicious">Del.icio.us</a>' );
		}
	}
});

function digg( obj ) {
	if( obj.stories.length > 0 ) {
		$( '.social' ).prepend( '<a rel="nofollow" href="http://digg.com/submit?phase=2&amp;url=' + digg_url + '" title="Submit this post to Digg" class="digg">' + obj.stories[0].diggs + ' Diggs</a>' );
	}
	else {
		$( '.social' ).prepend( '<a rel="nofollow" href="http://digg.com/submit?phase=2&amp;url=' + digg_url + '" title="Submit this post to Digg" class="digg">Digg</a>' );
	}
}

$(function() {
	$( 'a' ).focus( function() {
		$( this ).blur();
	} );	
});

