Constructor

	FormStyle(form: String)
	
		Generates an instance of FormStyle.
		
			form name or id of the form that will be stylized
		
	


Methods

	FormStyle.checked(states: Object): void
	
		Sets the images that will be used when the input is focused.
		
			states
			
				object containing 3 properties, each one is setted with an image path:
				
					initial = default image
					over = when the input receives focus or the mouse is over it
					click = when pressing the mouse button
				
				Just the initial property is required.
			
		
	
	FormStyle.unchecked(states: Object): void
	
		Sets the images that will be used when the input isn't focused.
		
			states
			
				object containing 3 properties, each one is setted with an image path:
				
					initial = default image
					over = when the input receives focus or the mouse is over it
					click = when pressing the mouse button
				
				Just the initial property is required.
			
		
	
	FormStyle.apply(field: String, [field1: String, ...]): void
	
		Applies the transformation on the informed checkboxes/radios.
		
			field name of the field
			field1, ... infinity amount of fields
		
	
	FormStyle.check(field: HTMLInputElement): void
	
		Must be used to check a field instead of "field.checked = true".
		
			field field reference
		
	
	FormStyle.uncheck(field: HTMLInputElement): void
	
		Must be used to uncheck a field instead of "field.checked = false".
		
			field field reference
		
	
