$(document).ready(function() {
	$('.btn-ami,.btn-fav').tooltip({ 
		track: true, 
		delay: 0, 
		showURL: false, 
		showBody: " - ", 
		fade: 250 
	});

	
	$('.MenuVertical ul:not(.selected)').css('height','0');
	$('.MenuVertical li').hover(
		function(){
			var hght=(Number($(this).find('ul > li').length)*28)+'px';
			$(this).find('ul:not(.selected)').stop().animate({'height':hght},250);
		},
		function(){
			$(this).find('ul:not(.selected)').stop().animate({'height':0},250);
		}
	);
	
});
