$(function(){
(function( $ ){
$.fn.setError=function(err) {
	if(err==undefined) $(this).html("");
	else $(this).html(err);
	
	return $(this);
};
})( jQuery );
});

