/*
 * belk.contactus.js
 * Belk.com - Contact Us javascript
 * Copyright Belk, Inc.
 */
belk.web.contactus = {
	init: function(){
		var CU = belk.web.contactus;
		CU._setupAutoTabbing();

	},
	//private methods
	_setupAutoTabbing:function(){
		$('#txt_area_code').keyup(function(ev){
			if($(this).val().length>=3 && ev.keyCode!==9 && ev.keyCode!==16){
				$('#txt_phone1').focus();
			}
		});
		$('#txt_phone1').keyup(function(ev){
			if($(this).val().length>=3 && ev.keyCode!==9 && ev.keyCode!==16){
				$('#txt_phone2').focus();
			}
		});
	}
};

$(document).ready(belk.web.contactus.init);