﻿var $j = jQuery.noConflict();

	$j(document).ready(function () {
		$j('.ChangeValue').click(
			function () {
				if (this.value == this.defaultValue) {
					this.value = '';
				}
			}
		);

			$j('.ChangeValue').blur(
			function () {
				if (this.value == '') {
					this.value = this.defaultValue;
				}
			}
		);
	});

