var FIXPNG = {
    _init: function() {
        try {
        	FIXPNG._pngfix();
        } catch (e) {
            if (e) {
                alert(e.description);
            }
        };
    },

	_pngfix: function(){
		if (!/msie [^6]\.0/i.test(navigator.userAgent) && /msie 6\.0/i.test(navigator.userAgent)) {
			DD_belatedPNG.fix('img, .pngfix');
		};    
	}
}

$(document).ready(function() {
	FIXPNG._init();
});
