//Essas duas linhas existem para que o jQuery funcione corretamente no WordPress
jQuery.noConflict();
jQuery(document).ready(function($){
//------------------------------------------------------------------------------

//Função de scrollTo para efeito na home
	$('#irTopo, #irTopo2')
		.click(function() {
			$('html, body').animate({
				scrollTop: $('#topo').offset().top
			}, 1800)
		});
	$('#irProjetos, #irProjetos2')
		.click(function() {
			$('html, body').animate({
				scrollTop: $('#projetosPessoais').offset().top
			}, 1800)
		});
	$('#irCliques')
		.click(function() {
			$('html, body').animate({
				scrollTop: $('#meusCliques').offset().top
			}, 1800)
		});
	$('#irPortfolio')
		.click(function() {
			$('html, body').animate({
				scrollTop: $('#portfolio').offset().top
			}, 1800)
		});


//------------------------------------------------------------------------------
});

