$(document).ready( function() {
	$('#nav dt').hover(	function() { $(this).addClass('hover').next().addClass('hover') },
						function() { $(this).removeClass('hover').next().removeClass('hover') })
	$('#nav dd').hover(	function() { $(this).addClass('hover').prev().addClass('hover') },
						function() { $(this).removeClass('hover').prev().removeClass('hover') })
	$('#nav dd').click(	function() { 
		document.location.href= $(this).prev().find('a').attr('href')
	})
})