(function($){
	$( function(){
		$('input:text').focus( function(){
			if( $(this).val() == $(this).attr('title') ) $(this).val('');
			$( this ).addClass( 'focus' );
		});
		$('input:text').blur( function(){
			if( $(this).val() == '' ) $(this).val( $(this).attr('title') );
			$( this ).removeClass( 'focus' );
		});
	});
})(jQuery)
