var field = Class.create();field.prototype = {			// Unique Id is given to the field. Data is pulled from the fieldset with this Id.	initialize: function(id) {		this.id	=	id;		alert("inicializado "+id);	},		rating: function() {		return Builder.node('div', [					Builder.node('ol', {className:'star-rating'}, [						Builder.node('li', [							Builder.node('a', {href:'1', onclick:'return false;', title:'1 star out of 5', className:'one-star'}, 1)						]),						Builder.node('li', [							Builder.node('a', {href:'2', onclick:'return false;', title:'2 stars out of 5', className:'two-stars'}, 2)						]),						Builder.node('li', [							Builder.node('a', {href:'3', onclick:'return false;', title:'3 stars out of 5', className:'three-stars'}, 3)						]),						Builder.node('li', [							Builder.node('a', {href:'4', onclick:'return false;', title:'4 stars out of 5', className:'four-stars'}, 4)						]),						Builder.node('li', [							Builder.node('a', {href:'5', onclick:'return false;', title:'5 stars out of 5', className:'five-stars'}, 5)						]),						Builder.node('li', {className:'current-rating', style:'width:16px'})					]),					Builder.node('p', '1 out of 5 stars')				]);	}}