/*
	Module: Remove text/replace with default value jQuery Plugin
	Author:	James Swinyard [james@jamesswinyard.co.uk]
	Created: 25/06/11 23:00 GMT-0	
	Version: 1
*/

$(document).ready(function() {
	$('input[type="text"], textarea').focus(function() {
		this.value = '';
    });
   	$('input[type="text"], #Enq_form textarea').blur(function() {
   	    if ($.trim(this.value) == ''){
			this.value = (this.defaultValue ? this.defaultValue : '');
		}
    });
});

