$(function(){
	$('table.useHighLight tr').hover(function(){
		$(this).addClass('hovered');
	}, function(){
		$(this).removeClass('hovered');
	});
		
	$('table.siteMap td').hover(function(){
		$(this).children('div').addClass('hovered');
	}, function(){
		$(this).children('div').removeClass('hovered');
	});	
	
	$('#leftColumn td').hover(function(){
		$(this).addClass('hovered');
	}, function(){
		$(this).removeClass('hovered');
	});
	
	$('#leftColumn td.menuItem').hover(function(){
		$('td.container').children('table').hide();
		$(this).siblings('td.container').children('table').show();
	}, function(){
		$(this).siblings('td.container').children('table').hide();
	});
	
	$('#leftColumn td.container').hover(function(){
		$(this).children('table').show();
	}, function(){
		$(this).children('table').hide();
	});
})
