function iePngFix() {
    // ie stuff only
    if (document.all && document.styleSheets && document.styleSheets[0] && document.styleSheets[0].addRule) {
        
    // This is where you add in your custom styles!!
        document.styleSheets[0].addRule('#c3_footer1', 'behavior: url(' + MOS_WEB_ROOT + '/templates/js/iepngfix.htc)');
    }
};

window.onload = iePngFix; // Loads the fix on document load.
