﻿
$(document).ready(function () {
    var value;
    $(".searchBox").focus(function () {
        value = $(this).val();
        $(this).val("");
    });

//    $(".searchBox, input[type='text'], input[type='password']").focus(function () {
//        value = $(this).val();
//        $(this).val("");
//    });
//    $(".searchBox, textarea, input[type='password']").blur(function () {
//        if ($(this).val() == "") {
//            $(this).val(value);
//        }
//    });
});

