$( document ).ready( function(){		
	
	$('.c-blink')
		.focus( function(){
			if ( $( this ).attr('value') == $( this ).attr('title') ) {
				 $( this ).attr({ 'value': '' });
				 $( this ).addClass('c-blue');
			}
		})
		.blur( function(){
			if ( $( this ).attr('value') == '' ) {
				$( this ).attr({ 'value': $( this ).attr('title') });
				$( this ).removeClass('c-blue');
			}
		});
	
})


