$(document).ready(function(){
	$('#content .schedule li')
	.each(function(){
		$('dl', this).css({display: 'block', opacity: 0, top: -7, visibility: 'hidden'});
	})
	.live('mouseover', function(event){
		event.preventDefault();
		$(this).css({zIndex: 99})
		$('dl', this)
		.stop()
		.css({visibility: 'visible'})
		.animate({opacity: 1}, 150);
	})
	.live('mouseout', function(event){
		event.preventDefault();
		$('dl', this)
		.stop()
		.animate({opacity: 0}, 150, function(){
			$(this).css({visibility: 'hidden'});
			$(this).parent().css({zIndex: 1})
		});
	});
});