// JavaScript Document
$(document).ready(function()
{
	$("#emailJobseeker").blur(function()
	{
		//remove all the class add the messagebox classes and start fading
		$("#msgbox").removeClass().addClass('messagebox').text('Provera...').fadeIn("slow");
		//check the username exists or not from ajax
		$.post("_mail.php",{ emailJobseeker:$('#emailJobseeker').val() } ,function(data)
        {
		  if(data=='no') //if username not avaiable
		  {
		  	$("#msgbox").fadeTo(200,0.1,function() //start fading the messagebox
			{ 
			  //add message and change the class of the box and start fading
			  $(this).html('E-mail postoji u bazi').addClass('messageboxerror').fadeTo(900,0.99).fadeTo(3000,1).fadeOut(1000);
			  $('#hiddenmailJobseeker').empty().val('yes');
			});		
          }
		  else if(data=='yes')
		  {
		  	$("#msgbox").fadeTo(200,0.1,function()  //start fading the messagebox
			{ 
			  //add message and change the class of the box and start fading
			  $(this).html('E-mail ispravan').addClass('messageboxok').fadeTo(900,0.99).fadeTo(3000,1).fadeOut(1000);
			  $('#hiddenmailJobseeker').empty().val('no');
			});
		  }
		  else if(data=='empty') //if username not avaiable
		  {
		  	$("#msgbox").fadeTo(200,0.1,function() //start fading the messagebox
			{ 
			  //add message and change the class of the box and start fading
			  $(this).html('Unos E-mail adrese<br>je obavezan').addClass('messageboxerror').fadeTo(900,0.99).fadeTo(3000,1).fadeOut(1000);
			  $('#hiddenmailJobseeker').empty();
			});		
          }
		  
				
        });
 
	});
	
	$("#emailContact").blur(function()
	{
		//remove all the class add the messagebox classes and start fading
		$("#msgbox1").removeClass().addClass('messagebox').text('Provera...').fadeIn("slow");
		//check the username exists or not from ajax
		$.post("_mailemployer.php",{ emailContact:$('#emailContact').val() } ,function(data)
        {
		  if(data=='no') //if username not avaiable
		  {
		  	$("#msgbox1").fadeTo(200,0.1,function() //start fading the messagebox
			{ 
			  //add message and change the class of the box and start fading
			  $(this).html('E-mail postoji u bazi').addClass('messageboxerror').fadeTo(900,0.99).fadeTo(3000,1).fadeOut(1000);
			  $('#hiddenmailEmployer').empty().val('yes');
			});		
          }
		  else if(data=='yes')
		  {
		  	$("#msgbox1").fadeTo(200,0.1,function()  //start fading the messagebox
			{ 
			  //add message and change the class of the box and start fading
			  $(this).html('E-mail ispravan').addClass('messageboxok').fadeTo(900,0.99).fadeTo(3000,1).fadeOut(1000);
			  $('#hiddenmailEmployer').empty().val('no');
			});
		  }
		  else if(data=='empty') //if username not avaiable
		  {
		  	$("#msgbox1").fadeTo(200,0.1,function() //start fading the messagebox
			{ 
			  //add message and change the class of the box and start fading
			  $(this).html('Unos E-mail adrese<br>je obavezan').addClass('messageboxerror').fadeTo(900,0.99).fadeTo(3000,1).fadeOut(1000);
			  $('#hiddenmailEmployer').empty();
			});		
          }
		  
				
        });
 
	});
});
