﻿
/// <reference path="mootools-core-1.3-full.js" />

var FixIePng = new Class({
	initialize: function() {
		if (Browser.ie) 
			window.addEvent('domready', this.load.bind(this));
	},
	load: function() {
		$$('.FixIePng').each(function(el) {
			el.setStyle('background', 'none');
		});
	}
});

new FixIePng();

