<!--

function lowlight () {
	document.header.src='graphics/nav/shirts_header.png';
	document.geek.src='graphics/nav/shirts_geek.png';
	document.gamer.src='graphics/nav/shirts_gamer.png';
	document.movies_tv.src='graphics/nav/shirts_movies_tv.png';
	document.far_out.src='graphics/nav/shirts_far_out.png';
	document.new_stuff.src='graphics/nav/shirts_new_stuff.png';
}

function highlight(catname) {
	document.header.src='graphics/nav/shirts_header_hi.png';
	document.geek.src='graphics/nav/shirts_geek_hi.png';
	document.gamer.src='graphics/nav/shirts_gamer_hi.png';
	document.movies_tv.src='graphics/nav/shirts_movies_tv_hi.png';
	document.far_out.src='graphics/nav/shirts_far_out_hi.png';
	document.new_stuff.src='graphics/nav/shirts_new_stuff_hi.png';
	switch (catname) {
		case "geek" :
			document.geek.src='graphics/nav/shirts_geek_hi_2.png';
			break;
		case "gamer" :
			document.gamer.src='graphics/nav/shirts_gamer_hi_2.png';
			break;
		case "movies_tv" :
			document.movies_tv.src='graphics/nav/shirts_movies_tv_hi_2.png';
			break;
		case "far_out" :
			document.far_out.src='graphics/nav/shirts_far_out_hi_2.png';
			break;
		case "new_stuff" :
			document.new_stuff.src='graphics/nav/shirts_new_stuff_hi_2.png';
			break;
	}
}
// -->