$(document).ready(function(){
	$('#sitemap .sitemap ul ul li a').hover(function(){

	$(this).css({
		color:	'#00788A'
		})

	$(this).parent().css({
		'background-color': '#FFF',
		border:				'solid 1px #AAA'
		})

	}, function(){
	$(this).css({
		color:	'#999'
		})

	$(this).parent().css({
		background: 'none',
		border:				'solid 1px #444'
		})

	});

})
