$(document).ready(function() {
    //Form Field Watermarks
    $('input[type=text], textarea').focus(function() {
        if ($(this).val() == $(this).attr('defaultValue')) {
            $(this).val('');
        }
    });
    $('input[type=text], textarea').blur(function() {
        if ($(this).val() == '') {
            $(this).val($(this).attr('defaultValue'));
        }
    });

});
