Puget = {};

Puget.init = function(){
	
	datePickerController.createDatePicker({ formElements : { 'movedate' : 'm-sl-d-sl-Y' }, noFadeEffect : true });

	var inputs = $$('#free-quote input[type="text"]');
	
	inputs.each(function(e, index) {
		e.initialValue = e.value;
		
		e.onfocus = function(){
			if(this.value == this.initialValue) this.value = '';
		}
		
		e.onblur = function(){
			if(this.value == '') this.value = this.initialValue;
		}
		
	});
}
