$( function(){
	$("a[href^='http://']").attr('target','_blank');
	
	$('#socialBottom a').css('opacity','0.55')
		.hover( function(){
			$(this).fadeTo('fast', 1);
		}, function(){
			$(this).fadeTo('fast', 0.55);
		});
});
