$(window).load(function() {	
		$("#btn_enter1").mouseover(function() {
			$(this).css('cursor', 'hand');
			$('#btn_enter1').hide();
			$('#btn_enter2').fadeIn(1000);
      	});
		
		$("#btn_enter2").mouseout(function() {
			$(this).css('cursor', 'hand');
			$('#btn_enter2').hide();
			$('#btn_enter1').fadeIn(1000);
      	});
});
