$(function(){
	$(".clearonfocus").focus(function() {
		if($(this).data("oldcontent")==undefined) {
			$(this).data("oldcontent",$(this).attr("value"));
		}

		if($(this).data("oldcontent")==$(this).attr("value")) {
			$(this).attr("value","");
		}
	});
	$(".clearonfocus").blur(function() {
		if($(this).data("oldcontent")==undefined) return;

		if($(this).attr("value")=="") {
			$(this).attr("value",$(this).data("oldcontent"));
		}
	});
});

