var Point = new Class({
	Implements: [Options],

	x: null, 
	y: null,
	
	options: {
		'x' : null,
		'y' : null
	},
	
	initialize: function(options){
		this.setOptions(options);
		
		this.x = options.x;
		this.y = options.y;
	},
	
	Point: function(d1, d2) {
        this.x = d1;
        this.y = d2;
	}
});
