 $(document).ready(function() {
	 
	$('.default-value').focus(function () {
		if ($(this).attr("value") == $(this).attr("defaultValue")) {
			$(this).attr("value", '');
		}
	});

	$('.default-value').blur(function () {
		if ($(this).attr("value") == '') {
			$(this).attr("value", $(this).attr("defaultValue"));
		}
	});

});

