var tab = 1;
$(document).ready
(
	function()
	{/*
		$("#zipCode").bind("keydown",
			function(e)
			{
				if(e.keyCode == 9)
				{
					$(".dropDownList").css("display","none");
					$(".dropDownList").removeClass("keyEvent");
					$("#drop_list_"+tab).css("display","block");
					$("#drop_list_"+tab).addClass("keyEvent");
				
				}
			}
		);
		$(document).bind("keydown",
			function(e)
			{
				//alert ();
				if(e.keyCode == 9) // tab
				{
					if(tab <= 13)
					{	
						
						$(".dropDownList").css("display","none");
						$(".dropDownList").removeClass("keyEvent");
						$("#drop_list_"+tab).css("display","block");
						$("#drop_list_"+tab).addClass("keyEvent");
						
						tab++;
					}
					if(tab > 13)
					{
						$(".dropDownList").css("display","none");
						if(tab > 17)
						{
							tab = 1;
						}
						else
						{
							if(tab == 14)
							{
								$("#applicantFirstName").focus();
								e.preventDefault();
								if(e.returnValue)
								{
									e.returnValue = false;
								}
							}
							if(tab == 15)
							{
								$("#applicantLastName").focus();
								e.preventDefault();
								if(e.returnValue)
								{
									e.returnValue = false;
								}
							}
							if(tab == 16)
							{
								$("#applicantEmail").focus();
								e.preventDefault();
								if(e.returnValue)
								{
									e.returnValue = false;
								}
							}
							if(tab == 17)
							{
								$("#applicantPhone").focus();
								e.preventDefault();
								if(e.returnValue)
								{
									e.returnValue = false;
								}
							}
						}
						tab++;
					}
				}
			}
		);
		*/
	}
	
);
