$(document).ready(function(){
	var myBtn = $('ul#leftMenu>li.innerMenu');

	myBtn.bind({
		mouseover : function(){
			var myInnerMenuLen = $(this).children('ul').children('li').length;
			$(this).stop();
			//$(this).children('ul').stop();
			
			$(this).animate({'height':(myInnerMenuLen*36) + 26}, 200, 'easeOutBack', function(){
				$(this).children('ul').show();
			});
		}
		,mouseout : function(){
			$(this).stop();
			//$(this).children('ul').stop();
			
			$(this).animate({'height':'26px'}, 800, 'easeOutBack', function(){
				$(this).children('ul').hide();
			});
		}
	});
});


