$(document).ready(function()
{
// ftp account table to div conversion
$('.main > form').prepend('
');
$('.main > form > table tr:first-child > td').each(function()
{
$('.main .addacc').append(''+$(this).html()+'
');
});
$('.main .addacc').append(''+$('.main > form > table tr:last-child > td').html()+'
');
$('.main > form > table').remove();
$('.main b').removeAttr('style');
});
$(window).load(function()
{
$('.tablesorter-hasChildRow td.collapsed').html('');
$('.tablesorter-hasChildRow td.collapsible').click(function()
{
if($(this).hasClass('collapsed'))
{
$(this).html('');
}else
{
$(this).html('');
}
});
});