jQuery(document).ready(function(){
	jQuery('a[rel=external]').attr('target', '_blank');
	
	/* POG pra não bugar no ie7 */
	jQuery('#header ul li a').animate({opacity: 1}, {duration: 1});
	
	jQuery('#header ul li a').mouseover(function(){
		jQuery(this).animate({
			opacity: 0.4
		}, {duration: 200});
	})
	.mouseout(function(){
		jQuery(this).animate({
			opacity: 1
		}, {duration: 200});
	});
	
	jQuery('#posts p.history-back a').click(function(e){
		e.preventDefault();
		history.back();
	});
	
	jQuery('#content #comments #comments-list ul li:last').addClass('last');
	
	/* Paginação */
	jQuery('#content #pagination ul li:first').not('#content #pagination ul li.page_info').addClass('next-page');
	jQuery('#content #pagination ul li:last').not('#content #pagination ul li.page_info').addClass('prev-page');
});