$(document).ready(
			function()
			{


				// Title Based
				$('input.txbhint').focus(function() {
					if ($(this).val() == "" || $(this).val() == $(this).attr('title')){
						$(this).val("").removeClass("hinted");
					}
				}).blur(function() {
					if ($(this).val() == "") {
						$(this).val($(this).attr('title')).addClass("hinted");
					}
				}).filter(function() {
					if ($(this).val() == "" || $(this).val() == $(this).attr('title')){
						$(this).val($(this).attr('title')).addClass("hinted");
					}
				});
				
				$('textarea.txbhint').focus(function() {
					if ($(this).val() == "" || $(this).val() == $(this).attr('title')){
						$(this).val("").removeClass("hinted");
					}
				}).blur(function() {
					if ($(this).val() == "") {
						$(this).val($(this).attr('title')).addClass("hinted");
					}
				}).filter(function() {
					if ($(this).val() == "" || $(this).val() == $(this).attr('title')){
						$(this).val($(this).attr('title')).addClass("hinted");
					}
				});

				
				
			}
		);


