$(document).ready(function(){
   var li = $("div.left div.list li");
       li.hover(
   function(){
    var d =$(this).find("dl");
	if(d.length >0){
    $(this).find("dl").show();
	$(this).addClass("hover");
	}
    },
  function () {
    var d =$(this).find("dl");
	if(d.length >0){
    $(this).find("dl").hide();
	$(this).removeClass("hover");
	}
    }
      );
   var dd = $("div.left div.list dd");
       dd.hover(
   function(){
    var d =$(this).find("p");
	if(d.length >0){
    $(this).find("p").show();
	$(this).addClass("hovers");
	}
    },
  function () {
    var d =$(this).find("p");
	if(d.length >0){
    $(this).find("p").hide();
	$(this).removeClass("hovers");
	}
    }
      );
});
