// JavaScript Document

function mostrarFormLoginBook()
{
	$.ajax({
		type: 'post',
		url: 'loginBook/start.php',
		success: function(respuestaServ)
		{
			$("#formLogin").html(respuestaServ);
			
			iniciaEventos();
		}
	});
}

function iniciaEventos()
{
	/*--------------------------------------------------------------------------------------------
		Muestra el popUp de recordar contraseña
	--------------------------------------------------------------------------------------------*/
	$("#rememberPassword").fancybox({
		'frameWidth': 460, 
		'frameHeight': 150, 
		'hideOnContentClick': false,
		'overlayShow':	true
	});
	/*--------------------------------------------------------------------------------------------
	Acciones para Entrar y Cancelar
	--------------------------------------------------------------------------------------------*/
	
	$("#enter").click(function(){
		 validador();
	});		
}


