//jquery to get the Menu Tab "Candle Supplies" highlighted upon navigation of product categories.
function changeTab() {
	var item = $('.navItemCurrent');
	if (item.length == 0) {
		$('.navItemLeft:first').addClass('navItemLeftCurrent');
		$('.navItem:first').addClass('navItemCurrent');
		$('.navItemRight:first').addClass('navItemRightCurrent');
	}
}

document.body.onload = changeTab;
window.onload = changeTab;