// for IE's button image flicker issue. Kudos to
// the solution posted at: http://www.mister-pixel.com/#Content__state=is_that_simple
if( typeof document.execCommand != 'unknown' ) {
    try {
      document.execCommand("BackgroundImageCache", false, true);
    } catch(err) {}
} 
