$(document).ready(
	function()
	{
		height = $( '#shows-sidebar' ).height();
		$( '.hidden-event' ).css({height:height + 'px'});
	
		$( '.show-event' ).mouseover(
			function()
			{
				event_id = $( this ).attr( 'name' ).split('-')[2]
				
				$( '.hidden-event' ).slideUp('fast');

				$( '#hidden-event-' + event_id ).fadeIn('fast')				
							
			} //function
			
		) //mouseover
		
		$( '.hidden-event' ).mouseout(
			function()
			{
				if ( $(this).is(':visible') )
				{
					$(this).slideUp('fast');
					
				} //if
				
			} //function
			
		) //mouseout
	
	} //function
	
) //ready