$(document).ready(function()
{
    $('.tdmenubg').click(function()
    {
        if($(this).next().is(':visible'))
            $(this).next().hide('slow');
        else
            $(this).next().show('slow');
    });

    //$('#gallery a').lightBox();
});
