// initialize the jquery code
 $(document).ready(function(){
							
// hide all of the elements with a class of 'toggle'
$('.toggle').hide();

// toggle slide
$('#slideToggle').click(function(){
// by calling sibling, we can use same div for all demos
$(this).siblings('.toggle').slideToggle();
});

});
