var webBox = new Class({
	options: {
		// id webBoxa
		id: null,
		// idVrsta - id vrste webBoxa
		idVrsta: null,
		// idTab - id tab-a kojem webBox pripada
		idTab: null,
		// idStupac - id stupc-a u kojem se webBox nalazi
		idStupac: null,
		// toggs - da li je box otvoren ili ne ==> true - otvoren, false - zatvoren
		toggs: true
	},
	initialize: function(options){
		this.setOptions(options);
	}
	
});

webBox.implement(new Events, new Options);



