jQuery(function( $ ){

// ---------- Contact Page Text Masks and Focus Functions	
	$(".text").focus(function(){
		if(this.value == this.name){
			
			if($(this).hasClass("date_box")){
				$(this).mask("99/99/9999");
			}else if($(this).hasClass("phone_box")){
				$(this).mask("(999) 999-9999");
			}else{
				this.value='';
				this.innerHTML='';
			}
			
			
		}
	});
	
	$(".text").blur(function(){
		if(this.value == '(___) ___-____' || this.value == '__/__/____' || this.value == ''){
			$(this).unmask();
			this.value = this.name;
			this.innerHTML = this.name;
		}
	});
	
// ---------  EOF
});