
$(document).ready(function() {
    /* Default Text Clear */
    $(".defaultTextClear").each(function () {
        if( $(this).attr("value") == '' ) {
            $(this).attr("value", $("#"+$(this).attr("id")+"DefaultText").attr("value") );
        }
    });
    $(".defaultTextClear").focus(function () {
        if( $(this).attr("value") == $("#"+$(this).attr("id")+"DefaultText").attr("value") ) {
            $(this).attr("value","");
        }
    });
    $(".defaultTextClear").blur(function () {
        if( $(this).attr("value") == '' )  {
            $(this).attr("value", $("#"+$(this).attr("id")+"DefaultText").attr("value") );
        }
    });
});

