// Clear Input Fields

$(document).ready(function(){
						   $('#SearchCalendar input[type="text"]').each(function(){
	$(this).focus(function() {
	if( this.value == this.defaultValue ) {
		this.value = "";
	}
	}).blur(function() {
		if( !this.value.length ) {
			this.value = this.defaultValue;
		}
	});
	});
						   });