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