// JavaScript Document
$(document).ready(function(event) {
	$(".numericfield").keyup(function(event) {
		this.value = this.value.replace(/[^0-9.]+/i, "");
	});
	
	$(".currencyfield").keyup(function(event) {
		this.value = GabeUtil.currencyOnly(this.value);
	});
	
	$(".alphanumericfield").keyup(function(event) {
		this.value = GabeUtil.alphanumericOnly(this.value);
	});
	
	$(".datepickerfld").datepicker({
		dateFormat : 'yy-mm-dd'
	});
	
	$(".datepickerfld").attr('size', '12');
	
	$("input[name='firstname'], input[name='lastname']").focus(function(event) {
		if(this.value == 'First name' || this.value == 'Last name') {
			this.value = '';
		}
	});
});
