// JavaScript Document

jQuery.fn.emptyOnClick = function() {
	var obj=$(this);
	
	this.click(function() {
		if(!parseInt(obj.attr("toogle"))) {
			obj.attr("value","");
			obj.attr("toogle","1");
			obj.css({"color":"#000"});
		}
	});
};

