/*
 *  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 (jQuery.browser.msie) {
		if (jQuery.browser.version==6 || jQuery.browser.version==7) {
			$("#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>");
		    });
		}
	}
});
