$(document).ready(function() {
	// vars
	var newHref;
	var title = $('._ga1_on_').find('H2').text();
	
	// bypass social links
	$('#socials').find('a').map(function() {
		if (~$(this).attr('href').indexOf('twitter.com')) {
			newHref = 'http://twitter.com/home/?status=' + encodeURIComponent(title) + ' ' + encodeURIComponent(location.href);
			$(this).attr('href', newHref);
		};
	});
});
