jQuery( document ).ready( function(){
	jQuery('.blink')
		.focus(function(){
			if ( jQuery(this).attr('value') == jQuery(this).attr('title') ) {
				jQuery(this).attr({ 'value': '' })
			}
		})
		.blur(function(){
			if ( jQuery(this).attr('value') == '' ) {
				jQuery(this).attr({ 'value': jQuery(this).attr('title') })
			}
		})
});