window.addEvent('load', function() { // PNG transparents $$('img').each(function(img) { if(/\.png$/.test(img.src.toLowerCase())) { img.style.width = img.width+'px'; img.style.height = img.height+'px'; img.runtimeStyle.filter = "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='"+img.src+"', sizingMethod='scale')"; img.src = '/templates/tpl_vmz/images/blank.gif'; } }); $$('input').each(function(img) { if(/\.png$/.test(img.src.toLowerCase())) { //display:inline-block; img.style.width = img.width+'px'; img.style.height = img.height+'px'; img.runtimeStyle.filter = "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='"+img.src+"', sizingMethod='scale')"; img.src = '/templates/tpl_vmz/images/blank.gif'; } }); });