/**
 * author: Douglas Miguel
 */
$(document).ready(function(){
	function scroll_to(div){
		$('html, body').animate({
			scrollTop: $(div).offset().top
		},1000);
	}
	$('.menu_projetos').click(function() {
		scroll_to('.projetos');
	});
	$('.menu_perfil').click(function() {
		scroll_to('.perfil');
	});
});
