﻿$(document).ready(function() { 

    var textBoxText = 'Enter your reg';
    var textBoxSelector = '.quickval input.reg';

    $(textBoxSelector).blur(function() {
        if ($(this).val() == '')
            $(this).val(textBoxText);
    });

    $(textBoxSelector).focus(function() {
        if ($(this).val() == textBoxText)
            $(this).val('');
    });

    $(textBoxSelector).click(function() {
        if ($(this).val() == textBoxText)
            $(this).val('');
    });

});

