$(function (){
			
	$('table#fc_inner tr').children('td:first-child').addClass('first_cell');
	
	$('table#fc_inner tr:odd').addClass('zebra');
	
	$('div.event_special').parent().addClass('event_special_style');
	$('div.event_home').parent().addClass('event_home_style');
	$('div.event_away').parent().addClass('event_away_style');
	

$('div.header .top-level').hover(function(){
	$('ul',this).fadeIn(200);
},function (){
$('ul',this).fadeOut(100);
});

$('div.header .active').hover(function(){
	$('div.header li.active ul').hide();
});

$('.schedule').accordion({ 
    header: 'a.head', 
    navigation: true, 
	autoHeight: false,
    event: 'click', 
    animated: 'easeslide' 
});
});


