function sbBitly(url, type, option)
{
	if(type === 'tweet')
	{
		var bitlyData = 'url=' + url + '&tweet=' + option;
	}
	else
	{
		var bitlyData = 'url=' + url;
	}
	$.ajax(
	{
		async: false,
		url: 'http://stagebloc.com/framework/assets/plugins/bitly/process.php',
		data: bitlyData,
		dataType: 'jsonp',
		error: function(response)
		{
			alert('Error: ' + response.error_detail);
		}
	});
}
