﻿$(document).ready(function() {
//    InitWatermark();
});

function InitWatermark() {
    // watermarks and row highlights       
    $(".watermark").each(function() {
        this.value = $(this).attr("title");
        //    $(this).addClass("watermark");
    })
.focus(function() {
    if (this.value == $(this).attr("title")) {
        this.value = "";
        $(this).removeClass("watermark");
    }
})
.blur(function() {
    if (this.value == "") {
        this.value = $(this).attr("title");
        $(this).addClass("watermark");
    }
});
    ////remove watermark when form is submitted  
    //$("input:image, input:button, input:submit").click(function() {
    //    $(this.form.elements).select(".watermark").each(function() {
    //        if (this.value == $(this).attr("title")) {
    //            this.value = "";
    //        }
    //    });
    //});
}