$(document).ready(function() {
		$('.hideContent').hide();
		$('.btn-down').show();
		$('.slideBox h2').addClass('close');
		$('.slideBox .btn-up').click(function() {
			$(this).parent().parent().children('h2').removeClass('open');
			$(this).parent().parent().children('h2').addClass('close');	
  			$(this).parent().parent().children('.hideContent').slideUp(300,
				function() {
									
					$(this).parent().children('h2').children('.btn-up').fadeOut(300,
						function(){
							$(this).parent().children('.btn-down').fadeIn(300);
						}
					);
					
				});
		});

		
		$('.slideBox .btn-down').click(function() {			
			$(this).parent().parent().children('h2').addClass('open');
			$(this).parent().parent().children('h2').removeClass('close');					
  			$(this).parent().parent().children('.hideContent').slideDown(500,
				function() {
					$(this).parent().children('h2').children('.btn-down').fadeOut(300,
						function(){
							$(this).parent().children('.btn-up').fadeIn(300);
						}
					);
					
				});
		});
	});
