$.validator.setDefaults({
				submitHandler:function() { 
					//alert("submitted!"); 
				}
			});
			$(document).ready(function() {
				
				jQuery.each(jQuery.validator.messages, function(i) {   jQuery.validator.messages[i] = ""; });
								
				$('.currency').numeric({allow:",."});
				
				$('#homephonef').autotab({ target: $('#homephones'), format: 'numeric' });
				$('#homephones').autotab({ target: $('#homephonet'), format: 'numeric', previous: $('#homephonef') });
				$('#homephonet').autotab({ previous: $('#homephones'), format: 'numeric' });
				
				$('#workphonef').autotab({ target: $('#workphones'), format: 'numeric' });
				$('#workphones').autotab({ target: $('#workphonet'), format: 'numeric', previous: $('#workphonef') });
				$('#workphonet').autotab({ previous: $('#workphones'), format: 'numeric' });
				
				$('.cbform').hide();

				if($("input[@name='coborrower']:checked").val() == 1) {
					$('.cbform').show();
				}
				
				$("input[@name='coborrower']").click(function(){
					if($("input[@name='coborrower']:checked").val() == 0)
					{
						$('.cbform').hide();
				  		$('.cbform input').removeClass('required');
				  		$('.cbform select').removeClass('required');
					}
					else {
						$('.cbform').show();
						$('.cbform input').addClass('required');
				  		$('.cbform select').addClass('required');
					}					
				});
			});