window.addEvent('domready',function(){


$extend(Browser, {
	fixPNG: function(el) {
		if (Browser.Engine.trident){
			//el = document.id(el);
			el=$(el);
			
			var w = el.getStyle('width');
			var h = el.getStyle('height');
			var imgURL = el.getStyle('background');
			//alert(w+" "+h+" "+imgURL);
			if (imgURL.test(/\((.+)\)/)){
				el.setStyle('background', '');
 				var subEl = new Element('div', {
					'style': 'width: ' + w + ';' +
					'height: ' + h + ';' +
					"filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled='true', sizingMethod='crop', src='" + imgURL.match(/\((.+)\)/)[1] + "');"							
				});	
				el.grab(subEl);							
			};
		}
	}
});

//Browser.fixPNG('logo');
//Browser.fixPNG('ristorante');
//Browser.fixPNG('bontempo');


	    $('striscia3').setStyle('opacity',0.75);
	    $('striscia4').setStyle('opacity',0.70);
	    $('striscia5').setStyle('opacity',0.65);
	    $('striscia6').setStyle('opacity',0.55);
	    $('striscia7').setStyle('opacity',0.45);
	    $('striscia8').setStyle('opacity',0.3);
});

