

$(document).ready(function () {
	//gateway events
	$('#agegate_inputs input').one("focus", function() {
		$(this).val('');	
		
		 if($(this).hasClass('years') == true) {
				 $(this).focus();
				 //$(this).val("19");
				 
			 }
	});
	
	
	
	$('#agegate_inputs input').bind("keypress", function(e) {
		if( e.which!=8 && e.which!=0 && (e.which<48 || e.which>57))
  		{
   			return false;
  		}
									 
	});
	
	$('.agegate_error a').bind('click', function() {
		
		$('.agegate_error').hide();
	return false;
												});
});

