$.fn.uid=function(){
	return this.each(function(){
		this.id="n"+(++$.fn.uid.count);
  }); 
};
$.fn.uid.count=0;

