$(function() {
$('a.media').media({ width: 150, height: 20 });
$("input.file").filestyle({ image: "/common/img/kids/but_file.gif", imageheight : 54, imagewidth : 130, width : 150 });
});

$(document).ready(function()
{
  $(".c-body").hide();
  $(".c-title").click(function()
  {
    $(this).next(".c-body").slideToggle(100);
  });
});