	$(document).ready(function(){
	
		//dropdown sections & change open/close icons
		$('.day-of-week').click(function() {
			if ($(this).hasClass('open')){
				$(this).addClass('close');
				$(this).removeClass('open');
				
				$(this).children('.day-of-week-content').slideDown(); 
			}
			else if ($(this).hasClass('close')){
				$(this).addClass('open');
				$(this).removeClass('close');
				
				$(this).children('.day-of-week-content').slideUp(); 
			}
  			
		});
		
		//dropdown sections & change open/close icons
		$('.intro').click(function() {
			if ($(this).hasClass('open')){
				$(this).addClass('close');
				$(this).removeClass('open');
				
				$(this).children('.intro-content').slideDown(); 
			}
			else if ($(this).hasClass('close')){
				$(this).addClass('open');
				$(this).removeClass('close');
				
				$(this).children('.intro-content').slideUp(); 
			}
  			
		});
		
	});
