$(document).ready(function () {
	$('.menu li').mouseover(function(){
		var total_elements = $(this).children('.submenu').children('li').length;
		var total_height = 31 * total_elements;
		$(this).children('.submenu').stop().animate({height:total_height+'px'},{queue:false, duration:600, easing: 'easeOutBounce'})
	});
	$('.menu li').mouseout(function(){
		$(this).children('.submenu').stop().animate({height:'0px'},{queue:false, duration:600, easing: 'easeOutBounce'})
	});
	$('#tinyclasses').mouseover(function(){
		$(this).stop().animate({width:'397px', height:'30px;'},{queue:false, duration:600, easing: 'easeOutBounce'})
	});
	$('#tinyclasses').mouseout(function(){
		$(this).stop().animate({width:'37px', height:'20px;'},{queue:false, duration:600, easing: 'easeOutBounce'})
	});
	$('#tinyraces').mouseover(function(){
		$(this).stop().animate({width:'465px', height:'30px;'},{queue:false, duration:600, easing: 'easeOutBounce'})
	});
	$('#tinyraces').mouseout(function(){
		$(this).stop().animate({width:'37px', height:'20px;'},{queue:false, duration:600, easing: 'easeOutBounce'})
	});
});
