diff --strip-trailing-cr -d'ruNF^function' fivestar-5.x-1.3/jquery.rating.js fivestar-01-fix-ie-fix/jquery.rating.js --- fivestar-5.x-1.3/jquery.rating.js 2006-12-28 08:56:14.000000000 +0200 +++ fivestar-01-fix-ie-fix/jquery.rating.js 2007-03-14 03:20:07.000000000 +0200 @@ -181,8 +181,10 @@ }); return $(stack); } - // fix ie6 background flicker problem. - if ($.browser.msie == true) { - document.execCommand('BackgroundImageCache', false, true); - } + // fix ie6 background flicker problem. + if ($.browser.msie == true) { + try { + document.execCommand('BackgroundImageCache', false, true); + } catch(err) {} + } })(jQuery) \ No newline at end of file