$(document).ready(function()
{
$("#drop-ex").hide();
$("#drop-tg").click(function()
{
$(this).next("#drop-ex").slideToggle(600);
});
}); 