/**
 * @author Waldek
 */

var FlorSwitcher = new Class({
 options: {
	 handlerClass: 'floorImage' ,
	 boxClass: 'floorContainer'
	 },
 initialize: function(id, options){
	 var $this = this;
	 this.setOptions(options);
	 this.mainObj = $(id);
	 this.acc = new Accordion(this.mainObj, 'div.'+this.options.handlerClass, 'div.'+this.options.boxClass, {opacity:false});
	}
})
FlorSwitcher.implement(new Options);

