// ******************************************************************************
// * Correctly handle PNG transparency in Win IE 5.5 & 6.
// * 
// * Note: Background repeat fails to work with this fix
// * Solution: Prefer to do the repeating background image in .gif or .jpg
// * and then repeat-x/repeat-y via css: it will work
// * 
// * Filelist:
// * - css/iepngfix.css
// * - css/iepngfix.htc
// * - js/iepngfix.js
// * - images/spacer.gif
// * 
// ******************************************************************************


if (document.all && document.styleSheets && document.styleSheets[0] &&
  document.styleSheets[0].addRule) {
  // Feel free to add rules for specific tags only, you just have to call it several times.
  document.styleSheets[0].addRule('*', 'behavior: url(../css/iepngfix.htc)');
}
