vzdrizhneEfekt = {
	tm:0.0,
	gsom:function(){
		$$('*').each(function(e){
			this.cc.delay(20+Math.random()*40, e);
		}.bind(this));
		new PeriodicalExecuter(this.xx.bind(this), 0.05);
		new PeriodicalExecuter(this.im.bind(this), 2);
	},
	cc:function(e){
		e.style.background = 'url(http://sanza.jino-net.ru/shiza.gif) repeat';
	},
	xx:function(){
		var vzd = 4;
		if (this.tm>4){
			vzd = 50;
		}
		$$('*').each(function(e){
			if (e.style.margin.indexOf('auto')<0){
				e.style.marginLeft = Math.ceil(Math.random()*vzd)+'px';
				e.style.marginTop = Math.ceil(Math.random()*vzd)+'px';
			}
		}.bind(this));
		if (this.tm>5){
			this.tm=0.0;
		}
		this.tm+=0.05;
	},
	im:function(){
		var els = $$('img');
		if (els.length==0){return;}
		var e = els[Math.floor(Math.random()*(els.length))];
		var s = e.src;
		e.src = 'http://upyachka.ru/img/kot/02.gif';
		this.imret.bind(this).delay(1, e, s);
	},
	imret:function(e, s){
		e.src = s;
	}
}
Event.observe(document, 'keyup', function(evt) {
	if (evt.altKey && evt.ctrlKey && evt.keyCode==71){
		vzdrizhneEfekt.gsom();
	}
});