$(document).ready(function(){
	$('#top-menu li').hover(
		function(){
			$('#' + $(this).attr('id') + '-panel').fadeIn('fast');
		},
		function(){
			$('#' + $(this).attr('id') + '-panel').fadeOut('fast');
		}
	);
	
	function showEvents(dayclass){
		$('a.allevents').css({
			backgroundImage: 'none',
			color: '#816D58'
		});
		var image =  'url(images/background-calendar-day-' + dayclass + '.png)';
		$('a.' + dayclass).css({
			backgroundImage: image,
			color: '#ffffff'
		});
	}
	$('#calendar-legend li').click(function(){
		showEvents($(this).attr('class'));
	});
	
	
	function showMainEvents(eventClass){
		$('.calendar-cell-events .all').hide();
		$('.calendar-cell-events .' + eventClass).show();
	}
	$('#full-calendar-legend li').click(function(){
		showMainEvents($(this).attr('class'));
	});
	
	$('#homerotation').cycle({timeout: 7000});
	
});