// JavaScript Document

$(document).ready(function(){

$(".box").hide();

$(".header").click(function(){
$(this).next().slideToggle(400);
},
function(){
$(this).next().slideToggle(400);
});
});
