/**
 * 
 */

$('input[type="text"]').focus(function() {
    $(this).addClass("focus");
});
 
$('input[type="text"]').blur(function() {
    $(this).removeClass("focus");
});

$('textarea').focus(function() {
    $(this).addClass("focus");
});
 
$('textarea').blur(function() {
    $(this).removeClass("focus");
});

$("form").submit(function(){
	var send=true;
	$('.require',this).each(function(){
		val=$(this).val();
		if(jQuery.trim(val)=='')
		{
			$(this).addClass("reqalert");
			send=false;
		}else if(val=0)
		{
			$(this).addClass("reqalert");
			send=false;
		}else{
			$(this).removeClass("reqalert");
		}
		$("#requireAlter").fadeIn();

		$(this).keydown(function(){
			$(this).removeClass("reqalert");
			$("#requireAlter").fadeOut();
		});
		
	});
	
	if(send)
	{
		$('input:submit',this).replaceWith('لطفا صبر کنید..');
	}
	return send;
});




