$(document).ready(function(){

	$('#UserFirstname').tooltip({
		title: 'Ingresar tu nombre real genera más confianza, y ¡más gente querrá viajar contigo!',
		addclass: 'tip',
		showon: 'fixed',
		posY: -7
	});

	$('#UserLastname').tooltip({
		title: 'Ingresar tu apellido real genera más confianza, y ¡más gente querrá viajar contigo!',
		addclass: 'tip',
		showon: 'fixed',
		posY: -7
	});
});