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