
var IE = document.all;


/**
 * Poprawka do styli pod Opera
 * standardowo -20px
 */
$(window).addEvent('domready',function() {
	if (Browser.Engine.presto) {
		$$('img.accord-year-toggler').each(function(el) {
			el.setStyle('margin-top',-2);
		});
	}
	
	if ($('stats')) {
		var statsFx = new Fx.Styles('stats',{
			duration: 200,
			wait: false
		});
		$('stats').setOpacity(.2);
		$('stats').addEvents({
			'mouseenter': function() {
				statsFx.start({
					'opacity': .4
				})
			},
			'mouseleave': function() {
				statsFx.start({
					'opacity': .2
				})
			}
		});
	}
	
	/*if ($('signature')) {
		var sigFx = new Fx.Styles('signature',{
			duration: 200,
			wait: false
		});
		$('signature').setOpacity(.6);
		$('signature').addEvents({
			'mouseenter': function() {
				sigFx.start({
					'opacity': 1
				})
			},
			'mouseleave': function() {
				sigFx.start({
					'opacity': .6
				})
			}
		});
	}*/
});
