$(document).ready(function()
{
$(".expand-1").hide();
$(".toggle-1").click(function()
{
$(this).next(".expand-1").slideToggle(600);
});
}); 