$(document).ready(function(){
		$("dd").hide(); 
		$("dt a").click(function(evt){
			var $nextdd = $(this).parent().next();
				if($nextdd.children().is('ul')) {
				evt.preventDefault();
				$('dd:visible').slideUp('slow');
				if ($nextdd.is(':hidden')) {
						$nextdd.slideDown('slow');
				}
			}
		}); // end click
		
		$('dt').hover(handleOver, handleOut);
		$('p.contact').hover(handleOver, handleOut);
		
		function handleOver() {
			$(this).css('background', '#eee url(images/bkg_o.jpg) no-repeat 0 0');
		}
		
		function handleOut() {
			$(this).css('background', '#eee url(images/bkg.jpg) no-repeat 0 0');
		}
	}); // end ready