﻿$(document).ready(function () {$('input[type="text"]').each(function () {if ((this.value == null || this.value == "") && ($(this).attr('title') != null)) {this.value = $(this).attr('title');$(this).addClass('text-label');}$(this).focus(function () {if (this.value == $(this).attr('title')) {this.value = '';$(this).removeClass('text-label');}});$(this).blur(function () {if (this.value == '' && $(this).attr('title') != null) {this.value = $(this).attr('title');$(this).addClass('text-label');}});});$('input[type="submit"]').click(function () {$('input[type="text"]').each(function () {if (this.value == $(this).attr('title')) {this.value = '';}});});$(".date").datepicker({dateFormat: "mm/dd/yy",minDate: "-110y", maxDate: "+0d",changeMonth: true,changeYear: true,yearRange: "1900:2011"});});
