$(function(){
	selectEventMonth( $('#event_month').val() );
});

function selectEventMonth( monthid ){
	$('#event_mid').slideUp( "normal", function(){
		$('#event_mid').load( 'events/'+monthid+'.html', function(responseText, status){
			if( status != 'success' ){
				$('#event_mid').html( '<h2>No events for selected month</h2>' );
			}
			$('#event_mid').slideDown( "normal" );
		});
	});
}