$(document).ready(function(){
	$('.tweet_text > a').each(function(){
		alert($(this).attr('href'));
	});

	$('.twitter-box > a').click(function() {
	    alert("Yay");  
	    return false;
	});
});
