
$(document).ready(function(){
	
	$('.hidden-on-load').hide();
	
	$('body.calendar .toggler').toggle(
		function(){
			$(this).parent().next().slideDown(500);
			$(this).css('backgroundImage', 'url(/images/triangle_open.png)');
		},
		function(){
			$(this).parent().next().slideUp(500);
			$(this).css('backgroundImage', 'url(/images/triangle_closed.png)');
		}
	);
	
	
	$('body.people .toggler').toggle(
		function(){
			
			$(this).parent().next().next().next().slideDown(500);
			$(this).css('backgroundImage', 'url(/images/triangle_open.png)');
		},
		function(){
			$(this).parent().next().next().next().slideUp(500);
			$(this).css('backgroundImage', 'url(/images/triangle_closed.png)');
		}
	);
	
	$('body.events .toggler').toggle(
		function(){
			
			$(this).parent().next().next().slideDown(500);
			$(this).css('backgroundImage', 'url(/images/triangle_open.png)');
		},
		function(){
			$(this).parent().next().next().slideUp(500);
			$(this).css('backgroundImage', 'url(/images/triangle_closed.png)');
		}
	);
	
})
