$(document).ready(function() {
	$("#login_form").submit(function() {
		$("#msgbox").removeClass().addClass('messagebox').text('Benutzerdaten werden geprüft ...').fadeIn(1500);
		$.post("index.php?action=freelancer_login",{ 
			benutzer:$('#benutzer').val(), kennwort:$('#pwort').val()} ,function(data)
		{
		//alert(data);
		  if(data == 'true') {
		  	$("#msgbox").fadeTo(200,0.1,function() { 
			  $(this).html('Willkommen im Freelancerbereich ...').addClass('messageboxok').fadeTo(900,1, function() { 
			  	 document.location='index.php?ID=70';
			  });
			});
		  } else {
		  	$("#msgbox").fadeTo(200,0.1,function() { 
			  $(this).html('Ihr Benutzerdaten sind nicht korrekt ...').addClass('messageboxok').fadeTo(900,1,
              function() { 
			  	 document.location='index.php';
			  });
			});	
          }
		 });
 		return false;
	});
	 
	$("#password").blur(function() {
		$("#login_form").trigger('submit');
	});
	
	
	$("#loginClient").submit(function() {
		$("#msgbox").removeClass().addClass('messagebox').text('Benutzerdaten werden geprüft ...').fadeIn(1500);
		$.post("index.php?action=clientLogin",{ 
			benutzer:$('#client').val(), kennwort:$('#clientPwort').val()} ,function(data)
		{
		//alert(data);
		  if(data == 'true') {
		  	$("#msgbox").fadeTo(200,0.1,function() { 
			  $(this).html('Willkommen im Kundenbereich ...').addClass('messageboxok').fadeTo(900,1, function() { 
			  	 document.location='index.php?ID=84';
			  });
			});
		  } else {
		  	$("#msgbox").fadeTo(200,0.1,function() { 
			  $(this).html('Ihr Benutzerdaten sind nicht korrekt ...').addClass('messageboxok').fadeTo(900,1,
              function() { 
			  	 document.location='index.php';
			  });
			});	
          }
		 });
 		return false;
	});
});
