$(window).load(function() {
		$('#entrar_1').fadeIn(3000);
		
		$("#entrar_1").mouseover(function() {
			$(this).css('cursor', 'hand');
			$('#entrar_1').hide();
			$('#entrar_2').fadeIn(3000);
      	});
	
});
