// initialize the jquery code
 $(document).ready(function(){
//close all the content divs on page load
$('.showhide').hide();

// toggle box 1
$('#trigger').click(function(){
$('.showhide').slideToggle();
});

});