$(document).ready(function() {	
   $('.titletovalue').attr('value', function() {
		return (this.value == '' ? this.title : this.value);
   });    
   $('.titletovalue').blur(function() {
		$(this).attr('value', function() {
		 return (this.value == '' ? this.title : this.value);
	 });
   });
   $('.titletovalue').focus(function() {
	 $(this).attr('value', function() {
		 return (this.value == this.title ? '' : this.value);
	 });
   });
});
