$(function() {
  $("#menu-all").tabs().addClass('ui-tabs-vertical ui-helper-clearfix');
});

$(document).ready(function(){
 
	$("#call-number").hover(function() {
		$(this).next("#call-detail").animate({opacity: "show", top: "45"}, "slow");
	}, function() {
		$(this).next("#call-detail").animate({opacity: "hide", top: "60"}, "fast");
	});
});
