// OnLoad things here
jQuery(function(){
	jTextbox();
	
	
});

function jTextbox(){
	jQuery('.jtextbox').each(function(){
		jQuery(this).focus(function(){
			if (jQuery(this).hasClass('jtextbox')) {
				jQuery(this).removeClass('jtextbox').attr('value','');
			}
		});
	});
}


