function sbBitly(url, type, option)
{
	if(type === 'tweet')
	{
		var bitlyData = 'url=' + url + '&tweet=' + option;
	}
	else
	{
		var bitlyData = 'url=' + url;
	}
	$.ajax(
	{
		async: false,
		crossDomain: true,
		url: 'http://songsofjonathanwilson.com/assets/plugins/bitly/process.php',
		data: bitlyData,
		dataType: 'script',
		error: function(jqXHR, textStatus, errorThrown)
		{
			alert('Error: ' + jqXHR + ' / ' + textStatus + ' / ' + errorThrown);
		}
	});
}
