Fix PNG transparency for Internet Explorer

pngfix for IEAs you know Internet Explorer does not support PNG transparency and there are many javascripts out there to fix this problem. Many of them work really well but seems to require more effort and at time difficult to implement especially when dealing with developing on a CMS.

Here is a js file that resolves everything and is straight and simple. Just link this in your HTML head and let it do all the work.
Here is the code snippet you need to insert

<!--[if lt IE 7.]>
<script defer type="text/javascript" src="pngfix.js"></script>
<![endif]-->

Download pngfix for IE (Thanks to bobosola)