$(document).ready(function(){
	$(function() { var defaultText = 'Enter Full Name'; $('input[type="text"].name') .val(defaultText) .focus(function() { if ( this.value == defaultText ) this.value = ''}) .blur(function() { if ( !$.trim( this.value ) ) this.value = defaultText});});
	$(function() { var defaultText = 'Enter E-mail'; $('input[type="text"].email') .val(defaultText) .focus(function() { if ( this.value == defaultText ) this.value = ''}) .blur(function() { if ( !$.trim( this.value ) ) this.value = defaultText});});
	$(function() { var defaultText = 'Enter Phone'; $('input[type="text"].phone') .val(defaultText) .focus(function() { if ( this.value == defaultText ) this.value = ''}) .blur(function() { if ( !$.trim( this.value ) ) this.value = defaultText});});

    $('textarea').val('Include your message here.');  
    $('textarea').focus(function() {
        if ($(this).val() === 'Include your message here.') $(this).val('');
    });
    $('textarea').blur(function() {
        if ($.trim($(this).val()) === '') $(this).val('Include your message here.'); 
    }); 
});
