$(document).ready(function(){
	
	//Open external links in a new window
	$('a[href^="http"]').each(function(){
		var rg = new RegExp(document.domain)
		if ($(this).attr('href').search(rg) == -1){
			$(this).attr('target', '_blank');
		}
	});
	
	//Share links
	$('.postShare a').attr('target', '_blank');
	$('.postShare img')
		.attr('width', '24')
		.attr('height', '24')
		.hover(function(){
			$(this).animate({height:28, width:28}, 200);
		},
		function(){
			$(this).animate({height:24, width:24}, 200);
		});
});