$(document).ready(function(){
						   
	// Clear field value when clicked
	$(".has_default_value").focus(function (){
		if ( $(this).val() == $(this).attr("title") ) { 
			$(this).val("");
		}
	});
	$(".has_default_value").blur(function (){ 
		if ( $(this).val() == "" ) {
			$(this).val($(this).attr("title"));
		}
	});
	
});