	function menu() {
		$('#menu .option .image').css({opacity: 0.0});
		$('#menu .option').mouseenter(function(){
			var id = $(this).attr('id');

			$('#'+id).animate({height: '+='+menu_imageHeight, marginTop: '-='+menu_imageHeight}, menu_updateTime);
			$('#'+id+'_img').animate({opacity:1.0,height: '+='+menu_imageHeight}, menu_updateTime);
		});
		
		$('#menu .option').mouseleave(function(){
			var id = $(this).attr('id');

			$('#'+id).stop(true, true);
			$('#'+id+'_img').stop(true, true);
			$('#'+id).animate({height: '35', marginTop: '55'}, menu_updateTime);
			$('#'+id+'_img').animate({opacity:0.0,height: '0px'}, menu_updateTime);
		});
	}
