Event.onDOMReady(function() {
	if (AC.Detector.isIE() || AC.Detector.isFirefox()) {
		var shadows = $$('.shadow');
		
		shadows.each(function(element) {
			element.addClassName('alt');
		});
	}
});