jQuery(document).ready(function($){
	$('a[rel=external]').attr('target', '_blank');
	
	/* pog begin */
	$('#header ul li a').animate({opacity: 1}, {duration: 1});
	/* pog end */
	
	$('#header ul li a, a.blink').mouseover(function(){
		$(this).animate({
			opacity: 0.4
		}, {duration: 200});
	})
	.mouseout(function(){
		$(this).animate({
			opacity: 1
		}, {duration: 200});
	});

	/*$('#content form .field input#telefone').mask('(99) 9999-9999', {placeholder: ' '});*/
	
	$('input[type=reset]').bind('click', function(){
		/* pog begin */
		setTimeout(function(){
			$('form input[type=text]').val('');
			$('form textarea').html('');
			$('form select option').eq(0).attr('selected', 'selected')
		}, 1);
		/* pog end */
	});
	
	/* Paginação */
	$('#content #pagination ul li:first').not('#content #pagination ul li.page_info').addClass('next-page');
	$('#content #pagination ul li:last').not('#content #pagination ul li.page_info').addClass('prev-page');
});