function jewelryIndex() {
	// images hovers trigger border highlight and highlight of corresponding list item
	$("div#jewelry-photo-thumbs a").hover(
		function () {
			var className = $(this).attr('class');
			var itemLink = "li a."+className;			
			$(this).css("border-color", "#fcfaf1");
			$(itemLink).css("color", "#fcfaf1");
		}, 
		function () {
			var className = $(this).attr('class');
			var itemLink = "li a."+className;			
			var className = $(this).attr('class');
			$(this).css("border-color", "#aaa8a2");
			$(itemLink).css("color", "#222221");				
		}
	);		

	$("li.nav-item a").hover(
		function () {
			var className = $(this).attr('class');
			var itemLink = "div#jewelry-photo-thumbs a."+className;
			$(this).css("color", "#fcfaf1");
			$(itemLink).css("border-color", "#fcfaf1");
		}, 
		function () {
			var className = $(this).attr('class');
			var itemLink = "div#jewelry-photo-thumbs a."+className;					
			$(this).css("color", "#222221");
			$(itemLink).css("border-color", "#aaa8a2");
		}
	);
}