		/////////////////////////////////////////////////////////
		//
		// FISHEYE MENU CLASS
		//
		var fish = new Class({
			minZoom : 54,
			maxZoom : 128,
			zoomQty : 5,
			testVar : 'hi',
			initialize: function(handle) {
				this.handle = handle;
				this.items = this.handle.getElements('img');
				this.handle.setStyle('background', 'white');
				this.effects = [];
				this.items.each(function(el) {
					el.addEvent('mouseover', function() { this.magnify(el); }.bind(this));
					el.addEvent('mouseout', function() { this.shrink(el); }.bind(this));
					this.effects[el.src] = $(el.parentNode).effects({wait: false, duration: 200});
				}, this);
			},
			magnify: function(el) {
				this.effects[el.src].custom({
					'height': this.maxZoom + 'px',
					'width': this.maxZoom + 'px',
					'margin-top': '-' + (this.maxZoom - el.getStyle('height').toInt()) + 'px',
				})
			},
			shrink: function(el) {
				this.effects[el.src].custom({
					'height': this.minZoom + 'px',
					'width': this.minZoom + 'px',
					'margin-top': '0px',
				})
			}
		});

