/*JWB: 6-1-09; highlights id matching rel attribute*/
$(document).ready(function(){
	$(".navHint").hover(
		function(){
    		$("#"+$(this).attr("rel")).addClass("over");
		},
		function(){
    		$("#"+$(this).attr("rel")).removeClass("over");
		}
	);
});