// CSSFix.js // PATH: data/js/cssfix.js // Applies browser specific CSS rules. // Uses browserdetect.js found somewhere on the web. var cssFix = { init: function() { document.writeln(''); } } // Project speciific: cssFix.init(); cssFix.add('table.forums, table.wide { width: 940px; }', 'Safari'); cssFix.quit();