$(document).ready(function(){
	// Default Form Values
	$("#Child1_bday").focus(function(){
		defaultval = 'mm/dd/yy';
		this.value = '';
	});
	
	$("#Child1_bday").blur(function(){
		if (this.value == '') {
			this.value = defaultval;
		}
	});
	
	$("#Child2_bday").focus(function(){
		defaultval = 'mm/dd/yy';
		this.value = '';
	});
	
	$("#Child2_bday").blur(function(){
		if (this.value == '') {
			this.value = defaultval;
		}
	});
	
	$("#Child3_bday").focus(function(){
		defaultval = 'mm/dd/yy';
		this.value = '';
	});
	
	$("#Child3_bday").blur(function(){
		if (this.value == '') {
			this.value = defaultval;
		}
	});
	
	$("#Child4_bday").focus(function(){
		defaultval = 'mm/dd/yy';
		this.value = '';
	});
	
	$("#Child4_bday").blur(function(){
		if (this.value == '') {
			this.value = defaultval;
		}
	});
});

checked = false;

function checkedAll(frm1){
	var aa = document.getElementById(frm1);
	
	if(checked == false){
		checked = true
	} else {
		checked = false
	}
	
	for(var i=0;i<aa.elements.length;i++){
		if(aa.elements[i].type == "checkbox"){
	 		aa.elements[i].checked = checked;
	    }
	}
}