/**
 * INPUT HINT JQUERY PLUGIN
 *
 * Built by Joe Holdcroft <joe@message.uk.com>
 * at Message Digital Design Ltd.
 **/


$.fn.inputHint = function(val) {
	
	if(this.val() == '') {
		this.val(val);
	}
	
	this.focus(function() {
		
		if($(this).val() == val) {
			$(this).val('');
		}
		
	})
	.blur(function() {
		
		if($(this).val() == val || $(this).val() == '') {
			$(this).val(val);
		}
		
	});
	
	return this;
	
}