$(document).ready(function(){
	
	var tweetUrl = 'http://twitter.com/home?status=' + encodeURIComponent('@flightmarket ' + $('#box-titulo-anuncio h1').text() + ' ');
	
	$('.tweet').click(function(){
		
		CompressURL(window.location, function(shorturl) {
			window.open(tweetUrl + shorturl);
		});
		
		return false;
		
	});
	
});

function CompressURL(url,success)
{
	var link = 'http://to.ly/api.php?json=1&longurl=' + encodeURIComponent(url) + '&callback=?';
	
	$.getJSON(link, function(data){
		success && success(data.shorturl);
	});
}

