Part = new Class({
    Implements: [Options,Events],

    domObj: null,

    options: {
        id: '',
        element: new Element('img'),
		src: '',
		top: 0,
		left: 0,
        name: '',
		alt: '',
		title: '',
		selected: false
	},

    initialize: function(options){
        this.setOptions(options);

		this.element.setSytles({
			'position': 'absolute',
			'top': top+'px',
			'left': left+'px',
			'border': '0px solid black',
			'cursor': 'move',
			'z-index': '2'
		});
    }
});


