$(document).ready(function() {	
	$("div.catalog ul li:last-child").addClass("last");
	
	$("div.catalog div.item").hover(
	  function () {
		$(this).find("ul").show();
	  }, 
	  function () {
		$(this).find("ul").hide();
	  }
	);
	
})
