1.2 bug in IE6 with png fix
Hi there's a bug in 1.2 when using png fixes
on line 881. The problem is caused, because elem.filter does not
match /opacity/
(parseFloat( elem.filter.match(/opacity=([^)]*)/) )[1]) /
100).toString() : "";
it can be fixed with =>
(parseFloat( (elem.filter.match(/opacity=([^)]*)/) ||[0,"100"])[1]) /
100).toString() : "";
weepy *...(