		$(document).ready(function() {
			$(function(){			
				$("ul#photo_fader").innerfade({
					animationtype: 'fade',
					speed: 1500,
					timeout: 5000,
					type: 'sequence',
					containerheight: '220px'
				});
			});
		});
		$(document).ready(function(){

			$('.more_meetings').hide();
			$('.show_more').click(function(event){
				event.preventDefault();
				$('.more_meetings').slideToggle(400);
			});
			   
		});
