// JavaScript document used to repair menu on left side of home page
$(document).ready(function() {
	// Add hand cursor rollover to active drop down expander images
	$('#LeftPCCategoriesNav > table > tbody > tr > td:first-child img').css({cursor: 'pointer'});
	// Add gray expander images to the items without them
	$('#LeftPCCategoriesNav > table > tbody > tr > td:first-child:not(:has(img))').html('<img border="0" align="absmiddle" src="https://www.stuffingtonbear.com/shop/pc/images/btn_expand_gray.gif"/>');
	// Get rid of excess indentation
	$('#LeftPCCategoriesNav > table > tbody > tr > td > table > tbody > tr > td:first-child').remove();
});