﻿$(document).ready(function() {	
	
	// Função para voltar ao TOPO, no rodapé;
	$('#voltar-topo').click(function(e) {
		e.preventDefault();
		$('html, body').animate({scrollTop: '0px'}, 800);
	});
	
	// Hover nos thumbs de projetos;
	$('section#content article').hover(function() {
		$(this).find('.infos').stop().fadeTo('fast', 1);	
	}, function() {
		$(this).find('.infos').stop().fadeTo('fast', 0);	
	});
	
	$('section#content article:nth-child(2n)').css('marginRight', 0);
	

	$('.tipsy-rdy a', '#content, footer').tipsy({ offset: 0, gravity: 's', fade: true });
	$('.tipsy-rdy a', '#topo').tipsy({ offset: 0, gravity: 'n', fade: true });	
	
	$('section#content article:nth-child(2n)').css('marginRight', 0);
	$('#content').append('<div class="clear"><!-- limpando --></div>');
});
