(function($) {
	$(function(){
		
		
		$('.concertina').next().hide();
		
		$('.concertina').click(function(){
			//$(this).next().toggle();
			
			if($(this).next().css('display') == 'none'){
				$(this).next().slideDown();
				$(this).addClass('expanded');
			}else{
				$(this).next().slideUp();
				$(this).removeClass('expanded');
			}
			
		});
		
		
		
		$('.greybox-concertina').find('.greybox-concertina-content').hide();
		
		$('.greybox-concertina').click(function(){
			//$(this).next().toggle();
			
			if($(this).find('.greybox-concertina-content').css('display') == 'none'){
				$(this).find('.greybox-concertina-content').slideDown();
				$(this).addClass('expanded');
			}else{
				$(this).find('.greybox-concertina-content').slideUp();
				$(this).removeClass('expanded');
			}
			
		});
		
		
	});
})(jQuery);
