var Byteset = Class.create();
Byteset.prototype = {

	initialize: function()
	{
	
	}
}
function init() {
	new Byteset();
}
Event.observe(window, 'load', init);
