/*
 *  Adds an extra image, /i/presentation/arrow.gif, to the sidebar for most exterior pages.
 *  Only needed in IE because of CSS support, most browsers simply display a CSS background-image.
 */

$(document).ready(function(){
  if (navigator.appName.indexOf("Internet Explorer") > -1)
  {
    $("#sidebar li a, .merchandise #callout a, .color-fan-deck #callout a").each(function(){
      $(this).parent().append("<a href='" + $(this).attr("href") + "'><img src='/i/presentation/arrow.gif' class='ie-arrow-fix' /></a>");
    });
  }
});