
$(document).ready(function(){
	$('#schedule li:even').addClass('alt');
	
	
	$('#schedule li').hover( 
		function(){ $(this).stop().animate( { marginRight: '0px' }, 600 ); },
		function(){ $(this).stop().animate( { marginRight: '5px' }, 500 ); }
	);
	
	$('.location img').before( '<div class="glow"></div>' );
	
	$('#schedule li a').hover( 
		function(){
			var id = $(this).get(0).hash;
			$(id).css( { zIndex: '999' } ).find('.glow').fadeIn('fast');
		},
		function(){
			var id = $(this).get(0).hash;
			$(id).css( { zIndex: '110' } ).find('.glow').fadeOut('slow');
		} 
	);
	
	$('#schedule li a').each(function(){
			$(this).trigger('mouseover').trigger('mouseout');
	});
}); // end document.ready()
