		function showMethod(ident){
			var wynik='<table>';
			for(i in ident) wynik+='<tr><td>'+i+'</td><td>'+ident[i]+'</td></tr>';
			$('wynik').innerHTML=wynik+'</table>';
		}
		
		var bigIcons = new Class({
			minZoom : 120,
			maxZoom : 180,
			initialize: function(handle) {					
				this.el = $(handle);	
				if(this.el==null) return;
				this.img = this.el.getElement('img');
				this.el.index=this.el.src;
				this.el.addEvent('mouseover', function(e) { this.magnify(); }.bind(this));
				this.el.addEvent('mouseout', function(e) {  this.shrink(); }.bind(this));
				this.effect = new Fx.Morph(this.img,{wait: false,duration: 200,fps:25, transition: 'sine:in'});				
			},
			magnify: function(el) {
				this.img.set('src',this.img.get('highsrc'));
				//this.img.set('highsrc',this.src);	
				
						
				this.effect.start({
					'height': this.maxZoom + 'px',
					'width': this.maxZoom + 'px'
					
					//'margin-top': '-' + ((this.maxZoom - this.el.getStyle('height').toInt())/2) + 'px',
					//'margin-bottom': '-' + ((this.maxZoom - this.el.getStyle('height').toInt())/2) + 'px'						
				});
			},
			shrink: function() {
				this.effect.start({
					'height': this.minZoom + 'px',
					'width': this.minZoom + 'px',	
					
					'margin-top': '0px',				
					'margin-bottom': '0px'
				});		
				
			}			
		});
		

			
		window.addEvent('domready', function(){			
			new bigIcons($('przeg'));
			new bigIcons($('podaj'));
		}); 
		
		
		
		