$(function(){
	$(".content .units li.unit-b .title").hover(
		function() {
		    if ($(this).find('div.bot ul').length > 0) {
		        $(this).addClass("title-opened");
		    }
		},
		function() {
			if ($(this).find('div.bot ul').length > 0) {
		        $(this).removeClass("title-opened");
		    }
	    }
	);	
});
