$(document).ready(function() {
	$("div.unit").hover(function (){
		$(this).filter(":has(a)").addClass('hilite');
		$("div.cont", this).addClass('visible');
		//$("div.cont", this).fadeTo('slow', 1);
		//$("div.cont > *", this).fadeTo('slow', 1);
	}, function (){
		$(this).filter(":has(a)").removeClass('hilite');
		$("div.cont", this).removeClass('visible');
		//$("div.cont", this).fadeTo('slow', 0);
		//$("div.cont > *", this).fadeTo('slow', 0);
	});
});

