$(function(){
	
	$('#content .post a').hover
	(
		function() 
		{
			$(this).css('opacity',0.8);
		},
		function()
		{
			$(this).css('opacity',1);
		}
	);
	
	$('.follow-us a').not('.no').css('opacity', 0.5);
	$('.follow-us a').not('.no').hover
	(
			function(){
				$(this).fadeTo(300, 1);
			},
			function(){
				$(this).fadeTo(300, 0.5);
			}
	);
	
	$('a[rel=external]').click(function(e){
		e.preventDefault();
		window.open($(this).attr('href'));
	});

});