$(function() {	$(':input').each( function() {		if( !$(this).val() ) {			$(this).val( $(this).attr('title') );		}	});	$(':input').focus( function() {		$(this).removeClass('error');		if( $(this).val() == $(this).attr('title') ) {			$(this).val('');		}	});		$(':input').blur( function() {		if( $(this).val() == '' ) {			$(this).val( $(this).attr('title') );		}	});	$('#contact').submit( function() {		var complete = true;			$(':input.compulsory').each( function() {			if( $(this).val() == $(this).attr('title') ) {				$(this).addClass('error');				complete = false;			}		});				if( complete ) {			$(':input').each( function() {				if( $(this).val() == $(this).attr('title') ) {					$(this).val('');				}			});		}				return( complete );	});	});
