<!--
	function initRadioInputs() {
		var _animSpeed = 300;
		$('input.switcher').each(function(){
			var _input = $(this);
			var title = _input.attr('title');
			if(title != ''){
				var _target = $('#'+title);
				if(_input.is(':checked')) _target.show(); else _target.hide();

				function ref() {
					if(_input.is(':checked')) _target.slideDown(_animSpeed);
					else _target.slideUp(_animSpeed);
				}
				setInterval(ref,50);
			}
		});
	}
	function update_contact_number() {
		if($('#home_ac').val().length == 3 && $('#home_pre').val().length == 3 && $('#home_suf').val().length == 4) {
			$('#contact_number').html(' at ('+$('#home_ac').val()+') '+$('#home_pre').val()+'-'+$('#home_suf').val());
		} else {
			$('#contact_number').html('');
		}
	}
	$(document).ready(function(){
		$(':input').autotab_magic();
		$(':input').focus(function(){
			$(':input').parent().removeClass('curFocus');
			$(':input[tabindex='+$(this).attr('tabindex')+']').parent().addClass('curFocus');
		});
		$(':input[tabindex=1]').parent().addClass('curFocus');
		$('select.fixed-select-css').ieSelectWidth({
	        containerClassName : 'select-container',
	        overlayClassName : 'select-overlay'
	    });
		$('input[name=is_insured][value=yes]').attr('title', 'i1');
		initRadioInputs();
	});
-->
